Skip to content

Commit a6eb840

Browse files
committed
Add github workflow
1 parent 806bdaf commit a6eb840

1 file changed

Lines changed: 26 additions & 0 deletions

File tree

.github/workflows/tests.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
run: |
25+
cd tests
26+
./test.sh

0 commit comments

Comments
 (0)