Skip to content

Commit

Permalink
Merge pull request #57 from tommilligan/github-actions
Browse files Browse the repository at this point in the history
ci: add github actions
  • Loading branch information
tommilligan committed Feb 20, 2021
2 parents 91b9fb0 + 2258d09 commit f5218d6
Show file tree
Hide file tree
Showing 2 changed files with 83 additions and 1 deletion.
83 changes: 83 additions & 0 deletions .github/workflows/check.yml
@@ -0,0 +1,83 @@
on: [push, pull_request]

name: check

jobs:
# Test, and also do other things like code coverage
detailed-test:
name: Test main target
runs-on: ubuntu-20.04
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Cache build files
uses: actions/cache@v2
with:
path: |
~/.cargo/registry
~/.cargo/git
target
cargo_target
key: detailed-test-${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Install toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Install additional test dependencies
env:
CARGO_TARGET_DIR: cargo_target
run: ./scripts/install
- name: Run check script
run: ./scripts/check
- name: Upload coverage
continue-on-error: true
run: |
cargo tarpaulin --out xml
bash <(curl -s https://codecov.io/bash)
# Test on all supported platforms
test:
needs: detailed-test
name: Test all other targets
strategy:
matrix:
os:
- ubuntu-20.04
- windows-2019
rust:
- stable
- beta
- 1.35.0
experimental:
- false
# Run a canary test on nightly that's allowed to fail
include:
- os: ubuntu-20.04
rust: nightly
experimental: true
# Don't bother retesting stable linux, we did it in the comprehensive test
exclude:
- os: ubuntu-20.04
rust: stable
experimental: false
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.experimental }}
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Cache build files
uses: actions/cache@v2
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: test-${{ matrix.os }}-${{ matrix.rust }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Install toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.rust }}
override: true
- name: Run tests
run: cargo test
1 change: 0 additions & 1 deletion .gitignore
@@ -1,3 +1,2 @@
target
Cargo.lock
.*

0 comments on commit f5218d6

Please sign in to comment.