Skip to content

Release/v1.2.0

Release/v1.2.0 #24

Workflow file for this run

name: CI
on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main, develop ]
jobs:
test:
runs-on: ubuntu-latest
container:
image: ghcr.io/phicus/kea-python-dev:latest
credentials:
username: ghcr.io/phicus
password: ${{ secrets.REGISTRY_TOKEN }}
volumes:
- "${{github.workspace}}:/workdir"
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
persist-credentials: false
- name: Install
working-directory: /workdir
run: autoreconf --install --force && ./configure && make install
- name: Run Python3 Tests
working-directory: /workdir
run: python3 -m pytest ./keamodule