mirror of
https://github.com/cmur2/kube-stale-resources.git
synced 2024-11-14 08:56:16 +01:00
24 lines
425 B
YAML
24 lines
425 B
YAML
name: ci
|
|
|
|
on:
|
|
push:
|
|
schedule:
|
|
- cron: '7 4 * * 4' # weekly on thursday morning
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: Set up Python 3.8
|
|
uses: actions/setup-python@v1
|
|
with:
|
|
python-version: 3.8
|
|
- name: Install dependencies
|
|
run: |
|
|
pip install poetry
|
|
poetry install
|
|
- name: Linting
|
|
run: |
|
|
make lint
|