Skip to content

Unified yaml format parsing #62

Unified yaml format parsing

Unified yaml format parsing #62

Workflow file for this run

name: Build & test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: dependencies
run: sudo apt install -y $(cat dependencies.txt)
- name: make
run: make all
- name: nose
run: source build/env/bin/activate; pip install nose2
- name: make check
run: source build/env/bin/activate; nose2 -s tests -v