26 lines
457 B
YAML
26 lines
457 B
YAML
name: Building and testing LASP (not-master branch)
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- '!master'
|
|
|
|
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: |
|
|
pip install build pytest
|
|
python3 -m build
|
|
pip install dist/lasp*.whl
|
|
pytest
|
|
|
|
|