Skip to content

Commit c5ffeee

Browse files
committed
Add github test workflow
1 parent d8e29d9 commit c5ffeee

File tree

2 files changed

+50
-14
lines changed

2 files changed

+50
-14
lines changed

.github/workflows/test.yml

+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
name: Tests
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
9+
workflow_dispatch:
10+
11+
jobs:
12+
test-cl-quil:
13+
name: Test cl-quil
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/checkout@v2
17+
18+
- name: Run a multi-line script
19+
run: |
20+
sudo apt install sbcl
21+
make quicklisp
22+
sudo make install-test-deps
23+
make test-cl-quil
24+
25+
test-quilc:
26+
name: Test quilc
27+
runs-on: ubuntu-latest
28+
steps:
29+
- uses: actions/checkout@v2
30+
31+
- name: Run a multi-line script
32+
run: |
33+
sudo apt install sbcl
34+
make quicklisp
35+
sudo make install-test-deps
36+
make test-quilc
37+
38+
test-quilt:
39+
name: Test quilt
40+
runs-on: ubuntu-latest
41+
steps:
42+
- uses: actions/checkout@v2
43+
44+
- name: Run a multi-line script
45+
run: |
46+
sudo apt install sbcl
47+
make quicklisp
48+
sudo make install-test-deps
49+
make test-quilt
50+

.travis.yml

-14
This file was deleted.

0 commit comments

Comments
 (0)