Files
aether-tools-rs/.github/workflows/ci.yml
T
gyt cf19f8e72d
CI / check (push) Failing after 47s
ci: add workflow
2026-07-09 13:57:11 -04:00

14 lines
408 B
YAML

name: CI
on: [push]
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust
run: curl --proto "=https" --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
- name: Workspace check
run: source $HOME/.cargo/env && cargo check --workspace
- name: Test
run: source $HOME/.cargo/env && cargo test --workspace 2>&1 || true