mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-10 07:33:19 -04:00
Reduce code duplication by moving the ::gentoo setup part into a seperate script. This way only one file has to be edited when e.g. updating the profile to a new version Signed-off-by: Andrew Ammerlaan <andrewammerlaan@riseup.net>
20 lines
357 B
YAML
20 lines
357 B
YAML
name: duplicates
|
|
|
|
on:
|
|
push:
|
|
branches: [ dev ]
|
|
pull_request:
|
|
branches: [ dev ]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Setup master gentoo repository
|
|
run: |
|
|
./scripts/setup-master-gentoo.sh
|
|
- name: Check for duplicates
|
|
run: |
|
|
./scripts/check-duplicates.sh
|