Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .github/workflows/apt-repository-check.yaml
Original file line number Diff line number Diff line change
@@ -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
3 changes: 3 additions & 0 deletions .github/workflows/python-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down