Documentation improvements #45
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: Continuous Integration | |
on: | |
workflow_dispatch: | |
push: | |
branches-ignore: ["main", "release"] | |
pull_request: | |
branches-ignore: ["main", "release"] | |
permissions: | |
contents: read | |
jobs: | |
integration-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build Docker image | |
run: docker build -t local . | |
- name: Run unit tests | |
run: docker run -t local python3 -m unittest -v | |
- name: Run build tests | |
run: docker run -t local python3 -m pip install . |