lasp/.gitea/workflows/workflow.yml

26 lines
457 B
YAML
Raw Normal View History

name: Building and testing LASP (not-master branch)
2023-10-05 19:39:41 +00:00
on:
push:
branches:
- '!master'
2023-10-05 19:39:41 +00:00
jobs:
Build-Test-Ubuntu:
runs-on: ubuntu-latest
container: ascee/ubuntu_build:latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: true
- name: Build
run: |
2023-10-11 15:13:59 +00:00
pip install build pytest
2023-10-05 19:39:41 +00:00
python3 -m build
2023-10-11 15:13:59 +00:00
pip install dist/lasp*.whl
pytest
2023-10-05 19:52:51 +00:00