We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c88e472 commit acd716aCopy full SHA for acd716a
1 file changed
.github/workflows/pr.yml
@@ -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
19
+ python-version: 3.13
20
21
+ - name: Install Make
22
+ run: |
23
+ brew install make
24
25
+ - name: Make Package
26
27
+ make package
0 commit comments