Skip to content

v0.2.0b

v0.2.0b #36

Workflow file for this run

name: Build with hatch
on:
release:
types: [created]
workflow_dispatch: # needed for "Run" button to show up in action menu
jobs:
build:
runs-on: ${{ matrix.os }}
environment: hatch build
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: ["3.x"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements_dev.txt
pip install -e .
- name: Build with hatch
run: |
hatch build -c