Skip to content

Instantly share code, notes, and snippets.

@nahumsa
Created January 21, 2021 17:59
Show Gist options
  • Save nahumsa/feb22436d1beb82c7dbf22cbb63f14fe to your computer and use it in GitHub Desktop.
Save nahumsa/feb22436d1beb82c7dbf22cbb63f14fe to your computer and use it in GitHub Desktop.
Continous Integration for python using github actions
name: build and test on [Python 3.6, 3.7, 3.8]
on: push
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8]
steps:
- uses: actions/checkout@v2
- name: Build using Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Installing dependencies
run: |
python -m pip install pip --upgrade pip
pip install -r requirements.txt
- name: Running tests
run: |
cd tests/
python -m unittest
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment