Skip to content

Fix read_dat_file in utils.py (#179) #54

Fix read_dat_file in utils.py (#179)

Fix read_dat_file in utils.py (#179) #54

Workflow file for this run

name: Run Tests
on:
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements/test_requirements.txt
- name: Run pytest
env:
TEST_ENV: local
run: |
pytest