Skip to content

Split CI into OS-specific workflows #3

Split CI into OS-specific workflows

Split CI into OS-specific workflows #3

Workflow file for this run

name: 'Windows'
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
schedule:
- cron: "0 6 * * *"
jobs:
windows-build-and-test-stable:
strategy:
matrix:
toolchain: [ 'stable', 'beta', '1.63' ]
uses: './.github/workflows/01-build-and-test-windows.yml'
with:
os: 'windows-latest'
toolchain: ${{ matrix.toolchain }}
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-all-stable:
uses: './.github/workflows/03-lint.yml'
with:
os: 'windows-latest'