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

Commit

Permalink
Merge pull request #26 from shawnzhu/ci
Browse files Browse the repository at this point in the history
Enable Python CI
  • Loading branch information
dungdm93 authored Sep 2, 2021
2 parents ff53726 + ab70683 commit 8045f49
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: CI

on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- '3.7'
- '3.8'
- '3.9'
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Upgrade pip version
run: |
python -m pip install -U pip
- run: pip install -r requirements.txt
- run: pip install pytest assertpy
- run: pytest

0 comments on commit 8045f49

Please sign in to comment.