Skip to content

Update actions/checkout action dependency #69

Update actions/checkout action dependency

Update actions/checkout action dependency #69

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: [ main ]
env:
CARGO_TERM_COLOR: always
RUSTFLAGS: --deny warnings
jobs:
style:
name: Check basic style
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: LukasKalbertodt/[email protected]
check:
name: 'Build & test'
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- name: Restore Cache
uses: Swatinem/rust-cache@v2
- name: Build
run: cargo build
- name: Run tests
run: |
cargo test
cargo test --no-default-features