We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1cb4d79 commit c360d27Copy full SHA for c360d27
.circleci/config.yml
@@ -5,6 +5,11 @@ jobs:
5
- image: cimg/python:3.13
6
steps:
7
- checkout
8
+ - run:
9
+ name: Restore mtimes from git history
10
+ command: |
11
+ sudo apt-get install git-restore-mtime
12
+ git restore-mtime
13
- run:
14
name: setup environment
15
command: |
.github/workflows/build-book.yml
@@ -16,6 +16,13 @@ jobs:
16
runs-on: ubuntu-latest
17
18
- uses: actions/checkout@v4
19
+ with:
20
+ fetch_depth: 0
21
+
22
+ - name: Restore mtimes from git history
23
+ run: |
24
25
26
27
- name: Setup Python
28
uses: actions/setup-python@v5
0 commit comments