Skip to content

Fix coal reserves units #409

Fix coal reserves units

Fix coal reserves units #409

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
strategy:
fail-fast: false
matrix:
python-version: [3.8, 3.9]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
make env
- name: Check formatting
run: |
make check-formatting
- name: Lint
run: |
make lint
- name: Check typing
run: |
make check-typing
- name: Unit test
run: |
make unittest