Skip to content

Fix a race condition in the dex restart process #632

Fix a race condition in the dex restart process

Fix a race condition in the dex restart process #632

name: On Pull Request
# On pull_request, we:
# * always run lint checks
# * always run tests
on:
pull_request:
jobs:
lint:
name: Lint
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- name: Install dependencies
run: python3 -m pip install tox
- name: Run linters
run: tox -e lint
tests:
name: Run Tests
needs:
- lint
uses: ./.github/workflows/tests.yaml
secrets: inherit