23 lines
418 B
YAML
23 lines
418 B
YAML
name: kedro
|
|
|
|
on:
|
|
push
|
|
|
|
|
|
jobs:
|
|
kedro:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@master
|
|
- uses: actions/cache@v1
|
|
with:
|
|
path: ~/.cache/pip
|
|
key: ${{ runner.os }}-pip-${{ hashFiles('src/requirements.txt') }}
|
|
- name: Kedro
|
|
uses: WaylonWalker/kedro-action@develop
|
|
with:
|
|
GITHUB_PAT: ${{ secrets.REPO_ONLY_PAT }}
|
|
# verbose: true
|
|
|