Skip to content

Merge pull request #7 from atomic77/update_actions #35

Merge pull request #7 from atomic77/update_actions

Merge pull request #7 from atomic77/update_actions #35

Workflow file for this run

on: [push, pull_request]
name: Build on push
jobs:
check:
name: Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@v1
with:
toolchain: 1.73
components: rustfmt, clippy
- name: Build
run: cargo build
- name: Run clippy and fail if any warnings
run: cargo clippy -- -D warnings
- name: Run tests
run: cargo test