Skip to content

Split CI into OS-specific workflows #6

Split CI into OS-specific workflows

Split CI into OS-specific workflows #6

Workflow file for this run

name: 'Windows'
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
schedule:
- cron: "0 6 * * *"
jobs:
windows-build-and-test:
strategy:
matrix:
toolchain: [ 'stable', 'beta', '1.63' ]
uses: './.github/workflows/01-build-and-test-windows.yml'
with:
os: 'windows-latest'
toolchain: ${{ matrix.toolchain }}
msrv: ${{ matrix.toolchain == '1.63' }}
secrets:
NPCAP_OEM_PASSWORD: ${{ secrets.NPCAP_OEM_PASSWORD }}
NPCAP_OEM_USERNAME: ${{ secrets.NPCAP_OEM_USERNAME }}
windows-coverage-stable:
uses: './.github/workflows/02-coverage.yml'
with:
os: 'windows-latest'
windows-lint-stable:
uses: './.github/workflows/03-lint.yml'
with:
os: 'windows-latest'