Skip to content

Changed rate for storge from $0.009/1000 to $0.009/1024 #25

Changed rate for storge from $0.009/1000 to $0.009/1024

Changed rate for storge from $0.009/1000 to $0.009/1024 #25

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