8000 simple test case for failed post setup · doc-sheet/setup-python@2cff867 · GitHub
[go: up one dir, main page]

Skip to content

Commit 2cff867

Browse files
author
ds
committed
simple test case for failed post setup
1 parent db9987b commit 2cff867

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
on:
3+
pull_request:
4+
branches: ["main"]
5+
6+
jobs:
7+
born_to_fail:
8+
runs-on: ubuntu-latest
9+
10+
steps:
11+
- name: create requirements file
12+
run: echo django > requirements.txt
13+
14+
- name: Install python
15+
uses: actions/setup-python@57ded4d7d5e986d7296eab16560982c6dd7c923b
16+
id: pynstall
17+
with:
18+
python-version: '3.11'
19+
cache: pip
20+
cache-dependency-path: requirements.txt
21+
22+
# true if cache-hit occured on the primary key
23+
- run: echo '${{ steps.pynstall.outputs.cache-hit }}'
24+

0 commit comments

Comments
 (0)
0