Skip to content

Bump crate-ci/typos from 1.13.10 to 1.14.11 (#19) #16

Bump crate-ci/typos from 1.13.10 to 1.14.11 (#19)

Bump crate-ci/typos from 1.13.10 to 1.14.11 (#19) #16

Workflow file for this run

name: Test
on:
push:
branches: [ main ]
env:
CARGO_TERM_COLOR: always
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install toolchain
uses: actions-rs/toolchain@v1
with:
components: rustfmt
- name: Rust Cache
uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
- name: Build
uses: actions-rs/cargo@v1
with:
command: build
args: --all-features
- name: Test
run: make test-ci