Skip to content

Merge pull request #15 from Ofosu-Osei/final #26

Merge pull request #15 from Ofosu-Osei/final

Merge pull request #15 from Ofosu-Osei/final #26

Workflow file for this run

name: Seaborn CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.10.x, 3.11]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Run pytest
run: |
pip install pytest
pytest