Skip to content

feat: dependency file created and pytest workflow added #1

feat: dependency file created and pytest workflow added

feat: dependency file created and pytest workflow added #1

Workflow file for this run

name: Run Tests
on:
push:
branches: [ '*' ]
pull_request:
branches: [ '*' ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[dev]
- name: Run tests
env:
HYDRA_CONFIG_PATH: configs
HYDRA_CONFIG_NAME: config
HYDRA_TRAINING: test
TEST_ENV: true
run: |
python -m pytest tests/ -v