FMV with KLV Support #90
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: ci | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: hoverkraft-tech/[email protected] | |
| with: | |
| compose-file: | | |
| docker-compose.yml | |
| docker-compose.override.yml | |
| - run: | | |
| docker compose exec django tox -e lint | |
| lint-client: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-node@v3 | |
| - run: cd client && npm i && npm run lint | |
| pytest: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: hoverkraft-tech/[email protected] | |
| with: | |
| compose-file: | | |
| docker-compose.yml | |
| docker-compose.override.yml | |
| - run: | | |
| docker compose exec django tox -e test | |
| check-migrations: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: hoverkraft-tech/[email protected] | |
| with: | |
| compose-file: | | |
| docker-compose.yml | |
| docker-compose.override.yml | |
| - run: | | |
| docker compose exec django tox -e check-migrations |