Skip to content

Modernize the build scripts #79

Modernize the build scripts

Modernize the build scripts #79

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
pip install .
pip install git+https://github.com/rafelafrance/traiter.git@master#egg=traiter
- name: Test with unittest
run: |
python -m unittest discover