Added presentation with videos linked #85
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: requirements_lint_test | |
on: | |
# Triggers the workflow on push to all the branches and on pull request to the "master" or the "dev" branch | |
push: | |
pull_request: | |
branches: [ "master", "dev", "backend", "pytest"] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
test-n-lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.head_ref }} | |
- name: Install dependencies | |
run: | | |
python -m pip install -r src/backend/requirements.txt | |
python -m pip install -r requirements_git_actions.txt | |
- name: apply_black | |
run: | |
black --verbose . | |
- uses: psf/black@stable | |
with: | |
options: "--check --verbose" | |
src: "." | |
jupyter: true | |
version: "~= 22.0" | |
- name: Test with pytest | |
working-directory: tests/ | |
run: | | |
pytest |