We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a60b5f commit e25110eCopy full SHA for e25110e
1 file changed
.github/workflows/check.yml
@@ -56,22 +56,18 @@ jobs:
56
steps:
57
- uses: actions/checkout@v4
58
59
- - name: Set up Python
60
- uses: actions/setup-python@v5
+ - uses: actions/setup-python@v5
61
with:
62
python-version: ${{ env.python-version }}
63
64
- - name: Restore virtualenv
65
- id: restore-cache
66
- uses: actions/cache@v4
+ - uses: actions/cache@v4
67
68
path: |
69
.venv
70
activate_venv.sh
71
key: ${{ needs.setup.outputs.cache-key }}
72
fail-on-cache-miss: true
73
74
- - name: Run linting
75
- run: |
76
- source activate_venv.sh
77
- pylint src tests aws
+ - run: source activate_venv.sh
+
+ - run: pylint src tests aws
0 commit comments