Add an example illustrating how to use event semaphore on Windows and… #295
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'Linux' | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
schedule: | |
- cron: "0 6 * * *" | |
jobs: | |
linux-build-and-test-stable: | |
uses: './.github/workflows/01-build-and-test-unix.yml' | |
with: | |
os: 'ubuntu-latest' | |
toolchain: 'stable' | |
linux-build-and-test-msrv: | |
uses: './.github/workflows/01-build-and-test-unix.yml' | |
with: | |
os: 'ubuntu-latest' | |
toolchain: '1.63' | |
msrv: true | |
linux-coverage-stable: | |
uses: './.github/workflows/02-coverage.yml' | |
with: | |
os: 'ubuntu-latest' | |
linux-lint-stable: | |
uses: './.github/workflows/03-lint.yml' | |
with: | |
os: 'ubuntu-latest' |