Files
axum-app-wrapper/.github/workflows/ci.yml
fa-sharp e1440c6d57
Some checks failed
CI / build (push) Failing after 49s
Update ci.yml
2026-05-26 03:05:46 -04:00

27 lines
490 B
YAML

name: CI
on:
push:
env:
RUST_VERSION: "1.90"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Install Rust toolchain
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: ${{ env.RUST_VERSION }}
- name: cargo check
run: cargo check --examples
- name: cargo build
run: cargo build --examples