Skip to content

Commit

Permalink
maybe im smart enough?
Browse files Browse the repository at this point in the history
  • Loading branch information
MagicTeaMC committed Aug 25, 2024
1 parent aea5a7b commit 9f5e5cd
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,16 @@ on:
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
target: [x86_64-unknown-linux-musl, x86_64-pc-windows-gnu, x86_64-apple-darwin]
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest] # Add macOS runner
target: [x86_64-unknown-linux-musl, x86_64-pc-windows-gnu, x86_64-apple-darwin]
runs-on: ${{ matrix.os }} # Run on both Ubuntu and macOS
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v3
- name: Install Rust
run: rustup update stable
- name: Compile
id: compile
uses: rust-build/rust-build.action@v1.4.5
Expand Down

0 comments on commit 9f5e5cd

Please sign in to comment.