fixed the html for the vocabs #73
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- name: Dependencies Setup | |
run: make init | |
- name: Run Python unit tests | |
run: make test | |
- name: Verify that the Docker image for the action builds | |
run: make docker-build | |
- name: Integration test | |
id: integration | |
uses: ./ | |
with: | |
baseuri: http://example.org/integration-test | |
nsfolder: tests/ns-space | |
outfolder: tests/out | |
logconf: logconf.yml | |
- name: Verify integration test results | |
run: python3 -u -m pytest tests/integration.py |