Skip to content
This repository has been archived by the owner on Mar 14, 2024. It is now read-only.

Merge pull request #41 from georgian-io/rohit/readme_update #71

Merge pull request #41 from georgian-io/rohit/readme_update

Merge pull request #41 from georgian-io/rohit/readme_update #71

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
run-ci:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [3.7, 3.8]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Poetry
run: pipx install poetry
- name: Install Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: poetry
- name: Set up dependencies
run: make install
- name: Run unit tests
run: |
make test