Merge pull request #45 from naturerobots/update-github-workflow-confi… #126
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Noetic CI | |
on: | |
push: | |
branches: | |
- 'master' | |
- 'noetic' | |
pull_request: | |
branches: | |
- 'master' | |
- 'noetic' | |
workflow_dispatch: | |
branches: | |
- '*' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: docker setup and build | |
run: docker build . -t mesh_nav/noetic -f ci/Dockerfile-noetic | |
- name: catkin lint | |
run: docker run mesh_nav/noetic catkin_lint src |