Skip to content

Merge pull request #62 from arkade-os/agent/simplify-agent-guidance #251

Merge pull request #62 from arkade-os/agent/simplify-agent-guidance

Merge pull request #62 from arkade-os/agent/simplify-agent-guidance #251

Workflow file for this run

name: Build Compiler
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
env:
CARGO_TERM_COLOR: always
permissions:
contents: read
jobs:
build:
needs: check-format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --workspace --verbose
- name: Clippy
run: cargo clippy --workspace --all-targets -- -D warnings
- name: Run tests
run: cargo test --workspace --verbose
check-format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check Rust code format
run: cargo fmt --check