-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replace Travis with GitHub Actions for Allsorts
- Loading branch information
1 parent
3818591
commit 4729d3e
Showing
3 changed files
with
38 additions
and
31 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
name: CI | ||
|
||
on: | ||
push: | ||
branches: ["master"] | ||
tags: ["v[0-9]+.[0-9]+.[0-9]+"] | ||
pull_request: | ||
branches: ["master"] | ||
workflow_dispatch: | ||
|
||
jobs: | ||
ci: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
rust: [beta, stable, 1.66.0] | ||
os: [macos-latest, ubuntu-latest, windows-latest] | ||
experimental: [false] | ||
# Allow nightly jobs to fail without failing the workflow run. | ||
include: | ||
- rust: nightly | ||
os: macos-latest | ||
experimental: true | ||
- rust: nightly | ||
os: ubuntu-latest | ||
experimental: true | ||
- rust: nightly | ||
os: windows-latest | ||
experimental: true | ||
runs-on: ${{ matrix.os }} | ||
continue-on-error: ${{ matrix.experimental }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- run: cargo test | ||
- run: cargo check --no-default-features --features flate2_zlib # Check without outline feature. | ||
- run: cargo check --no-default-features --features flate2_rust |
This file was deleted.
Oops, something went wrong.
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