We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 31a6151 commit 96b4aebCopy full SHA for 96b4aeb
.github/workflows/build-and-test.yml
.github/workflows/release.yml
.github/workflows/tests.yml
@@ -0,0 +1,21 @@
1
+---
2
+name: Tests
3
+
4
+on:
5
+ push:
6
+ pull_request:
7
8
+permissions:
9
+ contents: read
10
11
+jobs:
12
+ test:
13
+ name: Build and Test
14
+ runs-on: ubuntu-24.04
15
16
+ steps:
17
+ - name: Checkout repository
18
+ uses: actions/checkout@v6
19
20
+ - name: Build and test
21
+ run: make test
0 commit comments