Skip to content

start to write data to file #75

start to write data to file

start to write data to file #75

Workflow file for this run

name: Run Tests
on: [push, pull_request]
jobs:
test:
name: Run Tests
runs-on: ubuntu-20.04
permissions:
contents: read
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install --upgrade pip
pip install tox tox-gh-actions
- name: Copy config
run: cp local_settings.cfg.example local_settings.cfg
- name: Run Tests
run: tox