Skip to content

Bump actions/checkout from 3 to 4 #59

Bump actions/checkout from 3 to 4

Bump actions/checkout from 3 to 4 #59

Workflow file for this run

name: build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- 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