Skip to content

Bug2228209-pkidbuser-wrong-o-in-pkispawn #95

Bug2228209-pkidbuser-wrong-o-in-pkispawn

Bug2228209-pkidbuser-wrong-o-in-pkispawn #95

Workflow file for this run

name: Python Tests
on: [push, pull_request]
jobs:
init:
name: Initialization
uses: ./.github/workflows/init.yml
secrets: inherit
build:
name: Waiting for build
needs: init
runs-on: ubuntu-latest
steps:
- name: Wait for build
uses: lewagon/wait-on-check-action@v1.2.0
with:
ref: ${{ github.ref }}
check-name: 'Building PKI'
repo-token: ${{ secrets.GITHUB_TOKEN }}
wait-interval: 30
if: github.event_name == 'push'
- name: Wait for build
uses: lewagon/wait-on-check-action@v1.2.0
with:
ref: ${{ github.event.pull_request.head.sha }}
check-name: 'Building PKI'
repo-token: ${{ secrets.GITHUB_TOKEN }}
wait-interval: 30
if: github.event_name == 'pull_request'
python-lint-test:
name: Python lint
needs: [init, build]
uses: ./.github/workflows/python-lint-test.yml