Bump docker/login-action from 4.5.2 to 4.6.0 #1039
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: unit-tests | |
| on: | |
| pull_request: | |
| branches: | |
| - '!master' | |
| - 'develop' | |
| jobs: | |
| unit-tests: | |
| # Dependabot PRs to develop are handled by dependabot-develop-tests.yml, | |
| # which runs the tests on a freshly built Docker image instead. | |
| if: ${{ github.actor != 'dependabot[bot]' }} | |
| uses: ./.github/workflows/test-suite.yml | |
| with: | |
| test_suite_name: unit-tests | |
| test_dir: tests/unit | |
| test_path_prefix: tests/unit/ | |
| pytest_workers: "5" | |
| timeout_minutes: 120 | |
| output_path: output/unit_tests | |
| artifact_name_prefix: test_slips-output- |