Skip to content

Change version font to JetBrains Mono #19

Change version font to JetBrains Mono

Change version font to JetBrains Mono #19

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: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- name: Install Rust
run: rustup update stable
- name: Build release
run: cargo build --release --verbose
- name: Run tests
run: cargo test --verbose
- name: Upload Release Binary
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.os }}-release-binary
path: ${{ matrix.os == 'windows-latest' && 'target/release/boxedmino.exe' || 'target/release/boxedmino' }}