We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4dd52c2 commit 67b615bCopy full SHA for 67b615b
.github/workflows/default.yml
@@ -0,0 +1,25 @@
1
+name: 🔨 Build mkdocs
2
+on:
3
+ pull_request:
4
+
5
+concurrency:
6
+ group: ci-${{github.actor}}-${{github.head_ref || github.run_number}}-${{github.ref}}-runner
7
+ cancel-in-progress: true
8
9
+jobs:
10
+ deploy:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v4
14
+ - uses: actions/setup-python@v4
15
+ with:
16
+ python-version: 3.x
17
+ - run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV
18
+ - uses: actions/cache@v3
19
20
+ key: mkdocs-material-${{ env.cache_id }}
21
+ path: .cache
22
+ restore-keys: |
23
+ mkdocs-material-
24
+ - run: pip install mkdocs-material
25
+ - run: mkdocs build
0 commit comments