Document double-blind artifact at top-level README (#122) #911
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: make check | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: install Python modules | |
run: pip install -U -r requirements.txt | |
- name: Install shellcheck and checkbashisms | |
run: sudo apt install -y shellcheck devscripts | |
- name: make check | |
run: make check |