Skip to content

version 0.3.0

version 0.3.0 #22

Workflow file for this run

name: Build
on: [push]
jobs:
# Build the project on linux, windows and macos
build:
name: Build on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ["ubuntu-latest", "windows-latest", "macos-latest"]
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --release