1 parent 806bdaf commit a6eb840Copy full SHA for a6eb840
1 file changed
.github/workflows/tests.yml
@@ -0,0 +1,26 @@
1
+name: HBS tests
2
+
3
+on: [push, pull_request]
4
5
+jobs:
6
+ test:
7
+ runs-on: ubuntu-latest
8
9
+ steps:
10
+ - name: Checkout code
11
+ uses: actions/checkout@v4
12
13
+ - name: Set up Python 3.x
14
+ uses: actions/setup-python@v5
15
+ with:
16
+ python-version: '3.10'
17
18
+ - name: Install Tcl
19
+ run: |
20
+ sudo apt-get update
21
+ sudo apt-get install -y tcl
22
23
+ - name: Run tests
24
25
+ cd tests
26
+ ./test.sh
0 commit comments