Skip to content

Update software versions in hooks and github workflows #14

Update software versions in hooks and github workflows

Update software versions in hooks and github workflows #14

Workflow file for this run

name: Unit tests
on:
push:
pull_request:
jobs:
run-unit-tests:
name: Run unit tests
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install dependencies
run: |
pip install -e .
pip install -r test-requirements.txt
- name: Run unit tests
run: |
pytest src/nerc_rates/tests