Skip to content

build with release

build with release #90

Workflow file for this run

name: Build and Test
on:
push:
env:
CARGO_TERM_COLOR: always
jobs:
build:
name: Build and Test
strategy:
fail-fast: false
matrix:
os: [windows-latest]
include:
# - os: macos-14
# name: "macOS ARM"
# - os: macos-latest
# name: "macOS x86"
# - os: ubuntu-latest
# name: "Linux"
- os: windows-latest
name: "Windows"
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Build
run: cargo build
- name: Run tests
run: cargo test