Skip to content
New issue

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

GHA: Add Windows #80

Closed
dweindl opened this issue Oct 25, 2021 · 1 comment
Closed

GHA: Add Windows #80

dweindl opened this issue Oct 25, 2021 · 1 comment
Assignees

Comments

@dweindl
Copy link
Member

dweindl commented Oct 25, 2021

Verify all tests pass on Windows

@fbergmann
Copy link
Collaborator

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants