Skip to content

Bump rustix from 0.37.23 to 0.37.27 (#3) #88

Bump rustix from 0.37.23 to 0.37.27 (#3)

Bump rustix from 0.37.23 to 0.37.27 (#3) #88

Workflow file for this run

name: "Test"
on: [push, pull_request]
jobs:
check:
name: "Check"
runs-on: ubuntu-latest
env:
RUSTFLAGS: "-D warnings"
steps:
- name: "Checkout sources"
uses: actions/checkout@v2
- name: "Install stable toolchain"
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: "1.70.0"
override: true
- name: "Run cargo check"
uses: actions-rs/cargo@v1
with:
command: check
args: --all-features
test:
name: "Tests"
runs-on: ubuntu-latest
env:
RUSTFLAGS: "-D warnings"
steps:
- name: "Checkout sources"
uses: actions/checkout@v2
- name: "Install stable toolchain"
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: "1.70.0"
override: true
- name: "Run cargo test"
uses: actions-rs/cargo@v1
with:
command: test
args: --all-features
lints:
name: "Lints"
runs-on: ubuntu-latest
env:
RUSTFLAGS: "-D warnings"
steps:
- name: "Checkout sources"
uses: actions/checkout@v2
- name: "Install stable toolchain"
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
components: rustfmt, clippy
- name: "Run cargo fmt"
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
- name: "Run cargo clippy"
uses: actions-rs/cargo@v1
with:
command: clippy
args: --all-features