-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (31 loc) · 967 Bytes
/
pre-commit.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: Pre-commit
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
pre-commit:
name: Pre-commit
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v3
- name: Cache R packages for pre-commit (live in renv)
uses: actions/cache@v4
with:
path: |
~/.cache/R/renv
key: r-precommit-cache|${{ env.pythonLocation }}|${{ hashFiles('.pre-commit-config.yaml') }}
# Notice this step depends on what
# https://github.com/lorenzwalthert/precommit has as
# R version in renv.lock. GHA ubuntu-latest runner comes
# with R 4.4.1, which is the same as in renv.lock. If that
# changes, caching will not work as it will be loading a
# different version of R.
- name: Run pre-commit hooks
uses: pre-commit/[email protected]