Skip to content

ignore tmp file

ignore tmp file #170

Workflow file for this run

name: tests_docker
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
container:
image: tgoelles/pointcloudset_base:latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: install pointcloudset
run: |
pip install -e .
conda info
conda list
- name: make test
run: make test
- name: generate badge
run: coverage-badge -f -o images/coverage.svg
- name: Verify Changed files
uses: tj-actions/verify-changed-files@v6
id: changed_files
with:
files: images/coverage.svg
- name: Commit badge
if: steps.changed_files.outputs.files_changed == 'true'
run: |
git config --local user.email "github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
git add images/coverage.svg
git commit -m "Updated coverage.svg"
- name: Push changes
if: steps.changed_files.outputs.files_changed == 'true'
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.github_token }}
branch: ${{ github.ref }}