Skip to content

chore(deps): bump xflags from 0.3.1 to 0.3.2 #74

chore(deps): bump xflags from 0.3.1 to 0.3.2

chore(deps): bump xflags from 0.3.1 to 0.3.2 #74

Workflow file for this run

name: CI
on:
- push
- pull_request
- workflow_dispatch
env:
CARGO_TERM_COLOR: always
RUSTFLAGS: '-C debuginfo=0'
CARGO_INCREMENTAL: 0
jobs:
Check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
- name: Run checks
run: cargo clippy -- -D warnings
Test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
- name: Run tests
run: cargo test