Skip to content

Commit

Permalink
build macos
Browse files Browse the repository at this point in the history
  • Loading branch information
bfong-owc committed May 3, 2024
1 parent d329093 commit bd5c4bc
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,25 @@ env:
CARGO_TERM_COLOR: always

jobs:
build:

build linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Test
run: make test
- name: Build
run: make clean release
- name: Package
run: make package-release

build macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Test
run: make clean test
- name: Build
run: make clean release
- name: Run tests
run: make test
- name: Package
run: make package-release

0 comments on commit bd5c4bc

Please sign in to comment.