Bump python from 100d96c
to 7f15e22
#301
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: Run Tests for patches and ci changes. | |
# Runs tests when updating patches or the ci pipeline | |
on: | |
# Triggers the workflow on push or pull request events but only for the main branch | |
pull_request: | |
branches: | |
- master | |
paths: | |
- '.github/workflows/**' | |
- 'Pipfile' | |
- 'Pipfile.lock' | |
- 'Dockerfile' | |
- 'requirements.txt' | |
- 'Makefile' | |
- 'tests/**' | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
permissions: | |
contents: read | |
jobs: | |
hardening: | |
name: Harden runner | |
uses: ./.github/workflows/hardening.yaml | |
call-run-tests: | |
needs: hardening | |
uses: ./.github/workflows/run-tests.yaml |