diff --git a/.github/workflows/apt-repository-check.yaml b/.github/workflows/apt-repository-check.yaml new file mode 100644 index 0000000..0c90ccd --- /dev/null +++ b/.github/workflows/apt-repository-check.yaml @@ -0,0 +1,18 @@ +name: CI/CD + +on: + workflow_call: + +concurrency: + group: ${{ github.workflow }}-${{ github.sha }} + cancel-in-progress: true + +jobs: + check: + name: Check APT repository + runs-on: ubuntu-latest + + steps: + - name: Check repository connectivity + run: | + wget -O- https://raw.githubusercontent.com/EffectiveRange/infrastructure-configuration/refs/heads/main/aptrepo/repository/check_repo.sh | sudo /bin/bash diff --git a/.github/workflows/python-ci.yaml b/.github/workflows/python-ci.yaml index b87dbe4..7b8f565 100644 --- a/.github/workflows/python-ci.yaml +++ b/.github/workflows/python-ci.yaml @@ -105,6 +105,9 @@ jobs: pull-requests: write steps: + - name: Check APT repository + uses: EffectiveRange/ci-workflows/.github/workflows/apt-repository-check.yaml + - name: Checkout with submodules uses: actions/checkout@v5 with: