Skip to content

Trivial change to test GitHub actions works. #2

Trivial change to test GitHub actions works.

Trivial change to test GitHub actions works. #2

Workflow file for this run

name: CI
on:
push:
paths:
- '.github/workflows/*'
- 'python_scripts/*'
- 'tests/*'
pull_request:
paths:
- '.github/workflows/*'
- 'python_scripts/*'
- 'tests/*'
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: ['3.9']
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
lfs: false
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -e .
- name: Download and extract files
run: |
fileid="1flW4suW8ROX2szDur3KlaLuOQCA5nGJr"
filename="data_github_actions.tar"
gdown --id $fileid -O $filename
tar -xvf $filename
- name: Run tests with pytest
run: |
pytest tests/