Skip to content

chore: test python container #182

chore: test python container

chore: test python container #182

Workflow file for this run

name: Unit tests
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.8', '3.9', '3.10' ]
container:
image: python:${{ matrix.python-version }}
steps:
- uses: actions/checkout@v2
- name: Install Python dependencies
run: |
pip install setuptools wheel coverage
pip install -r requirements.txt
- name: Run unit tests with coverage
run: |
coverage run -m unittest discover vafator.tests
- name: Upload Coverage to Codecov
uses: codecov/codecov-action@v3