chore(deps): bump the python group across 1 directory with 5 updates #1039
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: Tests | |
on: | |
pull_request: | |
types: | |
- opened | |
- edited | |
- synchronize | |
- reopened | |
- closed | |
jobs: | |
run-unit-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Tests | |
uses: devcontainers/[email protected] | |
with: | |
runCmd: | | |
make style_checks | |
make lint | |
make tests | |
make test | |
make test-e2e | |
push: never | |
skipContainerUserIdUpdate: false | |
run-authproxy-unit-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Tests | |
uses: devcontainers/[email protected] | |
with: | |
runCmd: | | |
cd authproxy | |
make test | |
push: never | |
skipContainerUserIdUpdate: false |