Skip to content

misc(ci): simplify

misc(ci): simplify #74

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:
include:
- os: macos-latest
target: apple
- os: ubuntu-latest
target: linux
- os: windows-latest
target: windows
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.target }}
path: target/*${{ matrix.target }}*/release/cgol-tui*