a first test to open the path to glory #1
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Data Import Tests | |
on: | |
push: | |
paths: | |
- 'data/**' | |
workflow_dispatch: | |
jobs: | |
data-import-test: | |
name: Data Import Tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v3 | |
with: | |
python-version: "3.10" | |
- name: Install dependencies | |
working-directory: data | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
- name: Data Import tests | |
working-directory: data/test | |
run: | | |
pytest |