Skip to content

misc(ci): simplify

misc(ci): simplify #76

Workflow file for this run

name: Rust
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- uses: swatinem/rust-cache@v2
- name: Build release
run: cargo build --release --verbose
- name: Run tests
run: cargo test --verbose
- name: Upload executable
uses: actions/upload-artifact@v4
with:
name: cgol-tui_${{ matrix.os }}
path: target/release/cgol-tui*