Modernize stat usage #127
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: Test Framework Tests | |
on: | |
# PR events only on master | |
push: | |
branches: | |
- 'master' | |
paths: | |
- 'testing/framework/*' | |
pull_request: | |
branches: | |
- 'master' | |
paths: | |
- 'testing/framework/*' | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
fwtest: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: ['ubuntu-latest', 'windows-latest'] | |
# The type of runner that the job will run on | |
runs-on: ${{ matrix.os }} | |
steps: | |
# Checkouut repository under $GITHUB_WORKSPACE | |
- uses: actions/checkout@v4.1.6 | |
- name: Set up Python 3.11 ${{ matrix.os }} | |
uses: actions/setup-python@v5.1.0 | |
with: | |
python-version: '3.11' | |
- name: Test test framework ${{ matrix.os }} | |
run: | | |
python runtest.py testing/framework | |