Skip to content

Commit acd716a

Browse files
committed
Add Pull Request action
1 parent c88e472 commit acd716a

1 file changed

Lines changed: 27 additions & 0 deletions

File tree

.github/workflows/pr.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: pr
2+
on:
3+
workflow_dispatch:
4+
pull_request:
5+
types: [opened, synchronize, reopened]
6+
7+
jobs:
8+
build:
9+
runs-on: spiceai-macos
10+
steps:
11+
- name: Checkout
12+
uses: actions/checkout@v4
13+
with:
14+
submodules: recursive
15+
16+
- name: Install Python
17+
uses: actions/setup-python@v4
18+
with:
19+
python-version: 3.13
20+
21+
- name: Install Make
22+
run: |
23+
brew install make
24+
25+
- name: Make Package
26+
run: |
27+
make package

0 commit comments

Comments
 (0)