CKAN-meta/.github/workflows/validate.yml

39 lines
1.3 KiB
YAML
Raw Normal View History

2020-12-14 15:37:32 +00:00
name: Validate ckans
on:
push:
branches:
- master
pull_request:
types:
- opened
- synchronize
- reopened
jobs:
Validate:
runs-on: ubuntu-latest
steps:
- name: Get CKAN-meta repo
uses: actions/checkout@v2
with:
ref: ${{ github.event.pull_request.head.sha }}
2020-12-14 15:37:32 +00:00
fetch-depth: 0
- name: Cache downloads
2020-12-29 23:59:15 +00:00
if: ${{ github.event_name == 'pull_request' }}
2020-12-14 15:37:32 +00:00
uses: actions/cache@v2
with:
2020-12-17 21:22:55 +00:00
path: .cache
2020-12-14 15:37:32 +00:00
key: downloads-${{ github.run_id }}
restore-keys: |
downloads-
- name: Test modified ckans
uses: KSP-CKAN/xKAN-meta_testing@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PR_BASE_SHA: ${{ github.event.pull_request.base.sha }}
EVENT_BEFORE: ${{ github.event.before }}
2020-12-14 15:37:32 +00:00
with:
source: commits
pull request url: ${{ github.event.pull_request.url }}
2021-01-27 06:22:49 +00:00
- name: Chmod cached files so actions/cache can read them
run: sudo chmod -R a+r .cache