mirror of
https://github.com/strukturag/nextcloud-spreed-signaling.git
synced 2025-03-14 19:42:48 +00:00
30 lines
567 B
YAML
30 lines
567 B
YAML
name: check-continentmap
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
paths:
|
|
- '.github/workflows/check-continentmap.yml'
|
|
- 'scripts/get_continent_map.py'
|
|
- 'Makefile'
|
|
pull_request:
|
|
branches: [ master ]
|
|
paths:
|
|
- '.github/workflows/check-continentmap.yml'
|
|
- 'scripts/get_continent_map.py'
|
|
- 'Makefile'
|
|
schedule:
|
|
- cron: "0 2 * * SUN"
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
check:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Check continentmap
|
|
run: make check-continentmap
|