We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Verify all tests pass on Windows
The text was updated successfully, but these errors were encountered:
all that should be needed here would be to add the platform into the matrix like so:
strategy: matrix: platform: [windows-latest, macos-latest, ubuntu-latest] runs-on: ${{ matrix.platform }}
in the worst case some of the tasks could be disabled on windows (no need to run codecoverage on all platforms i think), So some:
if: matrix.platform == 'ubuntu-latest'
on those steps will ensure that they are only executed there.
Sorry, something went wrong.
GHA: Run tests on windows-latest, macos-latest, ubuntu-latest
1b574e4
Closes #80
c3236cc
dweindl
No branches or pull requests
Verify all tests pass on Windows
The text was updated successfully, but these errors were encountered: