Skip to content

fix: Dockerfile to reduce vulnerabilities #123

fix: Dockerfile to reduce vulnerabilities

fix: Dockerfile to reduce vulnerabilities #123

Workflow file for this run

name: Tests
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.7', '3.8', '3.9', '3.10' ]
name: Pypendency tests on ${{ matrix.python-version }}
steps:
- uses: actions/checkout@master
- name: Setup python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python3 -m pip install --upgrade pipenv
pipenv install --dev
- name: Unittest
run: |
pipenv run make run-tests