Skip to content

Verbs are hard.

Verbs are hard. #9

Workflow file for this run

name: Sample CI
on:
push:
workflow_dispatch:
jobs:
main:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Apt dependencies
shell: bash
run: |
sudo apt -y update
sudo apt install -y python3-dev
- name: Python dependencies
shell: bash
run: |
pip3 install numpy \
pytest \
build
- name: Test
shell: bash
run: |
pytest -v .
- name: build
run: python -m build .
- name: install
shell: bash
run: |
pip install dist/*.whl
do_thing -h