bugfixes + jwt lib update #76
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 | |
# Controls when the action will run. Triggers the workflow on push or pull request | |
# events but only for the master branch | |
# test change | |
on: | |
push: | |
branches: [ main, develop ] | |
paths-ignore: | |
- 'documentation/**' | |
- 'design/**' | |
pull_request: | |
types: [ ready_for_review, review_requested ] | |
branches: [ main, develop ] | |
paths-ignore: | |
- 'documentation/**' | |
- 'design/**' | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
# # ubuntu18 was unstable at github (2022-07-06 - 2022-07-11) | |
# # does not seem to be supported by hithub anymore (2024-05-01) | |
# test_ubuntu_20: | |
# name: test build on ubuntu_20 | |
# runs-on: ubuntu-20.04 | |
# steps: | |
# - uses: actions/checkout@v3 | |
# - name: do test install in case of merged pull request | |
# run: cd /home/runner/work/firewall-orchestrator/firewall-orchestrator && ansible-playbook -e force_install=true site.yml -K | |
# test_ubuntu_22: | |
# name: test build on ubuntu_22 | |
# runs-on: ubuntu-22.04 | |
# steps: | |
# - uses: actions/checkout@v3 | |
# - name: do test install in case of merged pull request | |
# run: cd /home/runner/work/firewall-orchestrator/firewall-orchestrator && ansible-playbook -e force_install=true site.yml -K | |
test_ubuntu_latest: | |
name: test build on ubuntu latest | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: do test install in case of merged pull request | |
run: cd /home/runner/work/firewall-orchestrator/firewall-orchestrator && ansible-playbook -e force_install=true site.yml -K | |