Skip to content

Merge pull request #25 from YuWei-CH/conditional-branch-for-pgzip #5

Merge pull request #25 from YuWei-CH/conditional-branch-for-pgzip

Merge pull request #25 from YuWei-CH/conditional-branch-for-pgzip #5

Workflow file for this run

name: CI
# Events: push to main branch
on:
push:
branches:
- master
workflow_dispatch:
jobs:
# linux OS
build-linux:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run tests
run: python test_reform.py