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 67677ee commit 8288edbCopy full SHA for 8288edb
.github/workflows/cache_up_to_date.yml
@@ -0,0 +1,35 @@
1
+---
2
+name: Check that the cached aliases are up to date
3
+
4
+on:
5
+ schedule:
6
+ - cron: "44 4 */2 * *"
7
+ pull_request:
8
9
+jobs:
10
+ tests:
11
+ name: Run the integration/smoke tests
12
+ runs-on: "ubuntu-latest"
13
+ strategy:
14
+ fail-fast: false
15
16
+ steps:
17
+ - uses: actions/checkout@v4
18
+ - uses: actions/setup-python@v5
19
+ with:
20
+ python-version: "3.x"
21
22
+ - uses: actions/cache@v4
23
24
+ path: ~/.cache/pypoetry/virtualenvs
25
+ key: poetry-${{ hashFiles('poetry.lock') }}
26
27
+ - run: sudo pipx install poetry
28
+ env:
29
+ PIPX_BIN_DIR: /usr/bin
30
31
+ - name: Install dependencies
32
+ run: poetry install
33
34
+ - name: Run the tests
35
+ run: poetry run pytest -vv -k cache_up_to_date
0 commit comments