Skip to content

Merge pull request #18 from andyWang1688/release/v0.1.3 #18

Merge pull request #18 from andyWang1688/release/v0.1.3

Merge pull request #18 from andyWang1688/release/v0.1.3 #18

Workflow file for this run

name: CI
on:
push:
branches:
- main
- develop
- 'feature/**'
- 'release/**'
pull_request:
jobs:
lint-workflows:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: rhysd/actionlint@v1.7.11
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install build tooling
run: python -m pip install --upgrade pip build
- name: Install package
run: pip install -e .
- name: Run unit tests
run: PYTHONPATH=. python -m unittest discover -s tests
- name: Build distributions
run: |
rm -rf build dist ./*.egg-info
python -m build