implement correct trigger matching mumu channel, remove prints #670
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: Lint and test | |
on: | |
workflow_dispatch: | |
push: | |
pull_request: | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout β¬οΈ | |
uses: actions/checkout@master | |
with: | |
persist-credentials: false | |
submodules: recursive | |
- name: Setup python π | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.9 | |
- name: Install dependencies βοΈ | |
run: | | |
source setup.sh "" | |
- name: Lint π | |
run: | | |
source setup.sh "" | |
./tests/run_linting |