Skip to content
This repository was archived by the owner on May 5, 2022. It is now read-only.

Commit 8045f49

Browse files
authored
Merge pull request #26 from shawnzhu/ci
Enable Python CI
2 parents ff53726 + ab70683 commit 8045f49

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/ci.yaml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: CI
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
strategy:
9+
matrix:
10+
python-version:
11+
- '3.7'
12+
- '3.8'
13+
- '3.9'
14+
steps:
15+
- uses: actions/checkout@v2
16+
- uses: actions/setup-python@v2
17+
with:
18+
python-version: ${{ matrix.python-version }}
19+
- name: Upgrade pip version
20+
run: |
21+
python -m pip install -U pip
22+
- run: pip install -r requirements.txt
23+
- run: pip install pytest assertpy
24+
- run: pytest

0 commit comments

Comments
 (0)