Skip to content

Commit

Permalink
Add a test GH action to build
Browse files Browse the repository at this point in the history
  • Loading branch information
hq6 committed Apr 7, 2024
1 parent 74c41d0 commit baef090
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/build-artifacts.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Build Artifacts

on: [push]

jobs:
build-linux-artifact:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: make
run: make

build-osx-intel-artifact:
runs-on: macos-latest-large

steps:
- uses: actions/checkout@v4
- name: make
run: make

build-osx-arm-artifact:
runs-on: macos-latest

steps:
- uses: actions/checkout@v4
- name: make
run: make

0 comments on commit baef090

Please sign in to comment.