Skip to content

Merge pull request #7 from SNEWS2/fix-coincidence-tier-messages #15

Merge pull request #7 from SNEWS2/fix-coincidence-tier-messages

Merge pull request #7 from SNEWS2/fix-coincidence-tier-messages #15

Workflow file for this run

name: snews-data-formats-CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- name: Install dependencies
run: |
sudo apt update --yes && sudo apt install --yes git build-essential graphviz
pip install poetry
poetry install
- name: Test
run: poetry run pytest