Handle symlinks #6
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: CI | |
on: push | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build # I.e., verify that it compiles. | |
run: | | |
. run.sh | |
run::build | |
- name: Run tests | |
run: | | |
. run.sh | |
run::test | |
- name: Check formatting | |
run: | | |
. run.sh | |
run::format | |
if [[ "$(git status --porcelain)" ]]; then | |
git status # Print diff. | |
exit 1 | |
fi |