Skip to content

misc(ci): release workflow #66

misc(ci): release workflow

misc(ci): release workflow #66

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: aarch64-apple-darwin
- os: ubuntu-latest
target: x86_64-unknown-linux-gnu
- os: windows-latest
target: x86_64-pc-windows-msvc
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Cache dependencies
uses: swatinem/rust-cache@v2
- name: Build
uses: ClementTsang/[email protected]
with:
args: --release --target ${{ matrix.target }} --verbose
command: build
- name: Run tests
uses: ClementTsang/[email protected]
with:
args: --target ${{ matrix.target }} --verbose
command: test
- name: Upload executable
uses: actions/upload-artifact@v4
with:
name: cgol-tui-${{ matrix.os }}
path: target/${{ matrix.target }}/release/cgol-tui*