Skip to content

configure styling

configure styling #15

Workflow file for this run

name: Test Builds
on:
push:
branches:
- main
env:
CARGO_TERM_COLOR: always
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: ${{ runner.os }}-target
path: target/debug/*
retention-days: 1