Skip to content

Commit 5ca5096

Browse files
authored
Make CI use cache and avoid tox. (#1215)
1 parent f1872d0 commit 5ca5096

File tree

7 files changed

+1009
-41
lines changed

7 files changed

+1009
-41
lines changed

.github/greetings.yml

Lines changed: 0 additions & 13 deletions
This file was deleted.

.github/stale.yml

Lines changed: 0 additions & 21 deletions
This file was deleted.

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: CI
33
on:
44
push:
55
branches:
6-
- dev*
6+
- "*"
77
- master
88
tags:
99
- v*
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Clean
2+
on:
3+
workflow_dispatch:
4+
schedule:
5+
# Daily at 05:20
6+
- cron: '50 11 * * *'
7+
8+
jobs:
9+
del_runs:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Delete workflow runs
13+
uses: Mattraks/delete-workflow-runs@v2
14+
with:
15+
token: ${{ github.token }}
16+
repository: ${{ github.repository }}
17+
retain_days: 10
18+
keep_minimum_runs: 6

0 commit comments

Comments
 (0)