Show browser footer after print docs #186
Workflow file for this run
This file contains hidden or 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: Test and lint | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| test-and-lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@v4 | |
| - name: build | |
| run: | | |
| make build | |
| - name: lint | |
| run: | | |
| make style-check | |
| - name: test | |
| run: | | |
| make test | |
| - name: check missing migrations | |
| run: | | |
| make check-migrations |