diff options
author | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2020-01-02 20:50:35 +0100 |
---|---|---|
committer | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2020-01-02 22:58:13 +0100 |
commit | 71503f409cc3acab067d46e82799698046c252f5 (patch) | |
tree | 88b5f56aef0c3993ca1cb4cff9913982b0b15818 /.github/workflows/rust.yml | |
parent | ea2034e8062f8db6b5ae74ca8aeab4e2ee08479f (diff) | |
download | askama-71503f409cc3acab067d46e82799698046c252f5.tar.gz askama-71503f409cc3acab067d46e82799698046c252f5.tar.bz2 askama-71503f409cc3acab067d46e82799698046c252f5.zip |
Add GitHub Actions configuration
Diffstat (limited to '.github/workflows/rust.yml')
-rw-r--r-- | .github/workflows/rust.yml | 82 |
1 files changed, 82 insertions, 0 deletions
diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml new file mode 100644 index 0000000..1377b3e --- /dev/null +++ b/.github/workflows/rust.yml @@ -0,0 +1,82 @@ +name: CI + +on: + push: + branches: ['master'] + pull_request: + +jobs: + test: + strategy: + matrix: + os: [ubuntu-latest, macos-latest, windows-latest] + rust: [stable, beta] + exclude: + - os: macos-latest + rust: beta + - os: windows-latest + rust: beta + + runs-on: ${{ matrix.os }} + + steps: + - uses: actions/checkout@v1 + - uses: actions-rs/toolchain@v1 + with: + profile: minimal + toolchain: ${{ matrix.rust }} + override: true + - uses: actions-rs/cargo@v1 + with: + command: build + args: --workspace --all-targets + - uses: actions-rs/cargo@v1 + with: + command: test + args: --workspace + + stable-integrations: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - uses: actions-rs/toolchain@v1 + with: + profile: minimal + toolchain: stable + override: true + - run: | + cd testing + cargo test --features full + + nightly: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - uses: actions-rs/toolchain@v1 + with: + profile: minimal + toolchain: nightly + override: true + - run: | + cd testing + cargo test --features with-rocket + + lint: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - uses: actions-rs/toolchain@v1 + with: + profile: minimal + toolchain: stable + override: true + components: rustfmt, clippy + - uses: actions-rs/cargo@v1 + with: + command: fmt + args: --all -- --check + - uses: actions-rs/cargo@v1 + if: always() + with: + command: clippy + args: --workspace --all-targets -- -D warnings |