Skip to content

Merge pull request #10 from xoviat/stdin #1

Merge pull request #10 from xoviat/stdin

Merge pull request #10 from xoviat/stdin #1

Workflow file for this run

name: Rust
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: ⚡ Cache
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo
- name: Run build
run: cargo check --release
- name: Run build
run: cargo build --release