Skip to content

Commit

Permalink
add macos x86_64 build, rename other file to include linux
Browse files Browse the repository at this point in the history
  • Loading branch information
iamdb committed Nov 18, 2023
1 parent 8d00035 commit 84af586
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: On Pull Request To Main
name: On Pull Request To Main (Linux)
on:
pull_request:
paths:
Expand Down
26 changes: 26 additions & 0 deletions .github/workflows/pull-request-macos.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: On Pull Request To Main (MacOS)
on:
pull_request:
paths:
- "**.rs"
- "**/Cargo.lock"
- "**/Cargo.toml"
- "**/package.json"
- "**.svelte"
- "**.js"
- "**.ts"
branches:
- main
jobs:
pre-merge:
name: Pre-merge checks
runs-on: macos-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- uses: Swatinem/rust-cache@v2
with:
shared-key: ${{ runner.target }}-rust-cache
- uses: extractions/setup-just@v1
- name: Build player
run: just build-player x86_64-apple-darwin

0 comments on commit 84af586

Please sign in to comment.