Skip to content

CI/unit tests

CI/unit tests #4

Workflow file for this run

name: CI/unit tests
on:
push:
branches: [ $default-branch ]
pull_request:
branches: [ $default-branch ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9"]
steps:
- name: Check out latest
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install numpy matplotlib
- name: Run unit tests
run: python -m unittest discover -s asymmetric_uncertainty/tests -t .