Skip to content

Commit 1b9a388

Browse files
committed
Try out CI
1 parent 6c372b3 commit 1b9a388

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/ci.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Test
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- uses: actions/checkout@v4
11+
- name: Set up Python
12+
uses: actions/setup-python@v5
13+
with:
14+
python-version: '3.9.18'
15+
- name: Install pipenv
16+
run: pip install pipenv
17+
- name: Install dependencies
18+
run: make install
19+
- name: Setup Environment
20+
run: make env
21+
- name: Run tests
22+
run: make test

0 commit comments

Comments
 (0)