mirror of
https://github.com/actix/actix-extras.git
synced 2024-11-27 17:22:57 +01:00
36 lines
660 B
YAML
36 lines
660 B
YAML
|
name: Check MSRV
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- master
|
||
|
pull_request:
|
||
|
|
||
|
jobs:
|
||
|
build_and_test:
|
||
|
strategy:
|
||
|
fail-fast: false
|
||
|
|
||
|
runs-on: ubuntu-latest
|
||
|
|
||
|
steps:
|
||
|
- uses: actions/checkout@master
|
||
|
|
||
|
- name: Install Rust
|
||
|
uses: actions-rs/toolchain@v1
|
||
|
with:
|
||
|
toolchain: 1.39.0-x86_64-unknown-linux-gnu
|
||
|
default: true
|
||
|
|
||
|
- name: checks
|
||
|
uses: actions-rs/cargo@v1
|
||
|
with:
|
||
|
command: check
|
||
|
args: --all --bins --examples --tests
|
||
|
|
||
|
- name: tests
|
||
|
uses: actions-rs/cargo@v1
|
||
|
with:
|
||
|
command: test
|
||
|
args: --all --no-fail-fast -- --nocapture
|