Skip to content

update README: docker part #15

update README: docker part

update README: docker part #15

Workflow file for this run

name: GitHub Tests
on:
push:
branches:
- main # run tests when pushing to the main branch
pull_request:
branches:
- main # run tests when a pull request targets the main branch
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest] # test on both Ubuntu and Windows
python-version: ['3.9']
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Cache dependencies
uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run tests
run: pytest