Skip to content

Commit 5557ebd

Browse files
committed
Add Circle CI config.yml
1 parent 3139417 commit 5557ebd

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.circleci/config.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
version: 2
2+
jobs:
3+
test:
4+
docker:
5+
- image: ubuntu:18.04
6+
working_directory: ~/repo
7+
steps:
8+
- checkout
9+
- run:
10+
name: Install Dependencies
11+
command: |
12+
sudo apt-get update
13+
sudo apt-get install -y --no-install-recommends gforth python
14+
- run:
15+
name: Run Tests
16+
command: python test/run-tests.py -v

0 commit comments

Comments
 (0)