Skip to content

Commit

Permalink
Let's test a windows CI...
Browse files Browse the repository at this point in the history
  • Loading branch information
IanCa committed Jun 24, 2024
1 parent 47cf097 commit 3e7ef5c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
determine_version:
runs-on: ubuntu-latest
runs-on: windows-latest
outputs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
steps:
Expand All @@ -28,7 +28,7 @@ jobs:
needs: determine_version
strategy:
matrix:
platform: [ubuntu-latest]
platform: [windows-latest]
python-version: ${{fromJson(needs.determine_version.outputs.matrix)}}

runs-on: ${{ matrix.platform }}
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
path: .coverage

check-secret:
runs-on: ubuntu-latest
runs-on: windows-latest
outputs:
secrets-exist: ${{ steps.check-for-secrets.outputs.defined }}
steps:
Expand All @@ -101,7 +101,7 @@ jobs:
coverage:
name: Publish coverage
needs: [build, check-secret]
runs-on: ubuntu-latest
runs-on: windows-latest
if: needs.check-secret.outputs.secrets-exist == 'true'

steps:
Expand Down

0 comments on commit 3e7ef5c

Please sign in to comment.