Skip to content

Merge pull request #3 from greensh16/caching #21

Merge pull request #3 from greensh16/caching

Merge pull request #3 from greensh16/caching #21

Workflow file for this run

name: Build
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
components: rustfmt, clippy
override: true
- name: Build
run: cargo build --verbose