Skip to content

Rust Rewrite

Rust Rewrite #257

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
branches:
- main
env:
CARGO_TERM_COLOR: always
jobs:
test:
strategy:
fail-fast: false
matrix:
# Refers to
# - https://github.com/actions/runner-images
# - https://github.com/actions/partner-runner-images
image:
- ubuntu-24.04
- macos-13
- macos-15
- windows-2022
- ubuntu-24.04-arm
runs-on: ${{ matrix.image }}
name: Test on ${{ matrix.image }}
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --workspace --exclude portablemc-py
- name: Test
run: cargo test --workspace --exclude portablemc-py