Skip to content

Commit

Permalink
Run the test suite on Windows runners
Browse files Browse the repository at this point in the history
  • Loading branch information
matrss committed Mar 20, 2024
1 parent 5e1c5a0 commit 21174bb
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/testing-all-oses.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: ["macos-14", "ubuntu-latest"]
os: ["macos-14", "ubuntu-latest", "windows-latest"]
order: ["normal", "reverse"]
steps:
- uses: actions/checkout@v4
Expand All @@ -32,6 +32,9 @@ jobs:
sed -e '/^$/d' -e '/^#.*$/d' requirements.tmp.txt > requirements.txt
rm requirements.tmp.txt
cat requirements.txt
- name: Remove unavailable dependencies on Windows
if: ${{ startsWith(matrix.os, 'windows') }}
run: sed -i -e '/^dbus-python.*$/d' -e '/^libxmlsec1.*$/d' requirements.txt
- name: Get current year and calendar week
id: year-and-week
run: echo "year-and-week=$(date +%Y-%V)" >> "$GITHUB_OUTPUT"
Expand Down

0 comments on commit 21174bb

Please sign in to comment.