chore(deps): update dependency eslint to v8.57.0 #244
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
name: Tests (nostd) | |
jobs: | |
test-nofeatures: | |
name: ${{matrix.rust}} on ${{matrix.os}} | |
runs-on: ${{matrix.os}} | |
strategy: | |
matrix: | |
rust: [1.74.1, stable] | |
os: [ubuntu-20.04] | |
env: | |
RUSTFLAGS: '' | |
CARGO_PROFILE_DEV_DEBUG: '0' # reduce size of target directory | |
steps: | |
- name: Checkout | |
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4 | |
- name: Toolchain | |
run: rustup default ${{matrix.rust}} | |
- name: Check | |
run: cargo check --no-default-features --all-targets | |
- name: Test | |
run: cargo test --release --no-default-features |