Use workflow from https://github.com/Mews/.github/blob/main/workflows… #42
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
# This workflow will setup python 3.10, install the dependencies in requirements.txt and run the tests in tests/test.py | ||
# It will then also create a coverage report | ||
name: Tests | ||
on: | ||
push: | ||
branches: [ "main" ] | ||
pull_request: | ||
branches: [ "main" ] | ||
jobs: | ||
call-run-python-tests: | ||
uses: Mews/.github/workflows/run-python-tests.yaml@main | ||
Check failure on line 14 in .github/workflows/run_tests.yml GitHub Actions / .github/workflows/run_tests.ymlInvalid workflow file
|
||
with: | ||
python_versions: '["3.10", "3.11", "3.12"]' | ||
os_list: '["ubuntu-latest", "windows-latest"]' |