-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (27 loc) · 882 Bytes
/
Copy pathtest__pipx.yml
File metadata and controls
37 lines (27 loc) · 882 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: Test pipx
on:
push:
workflow_dispatch: # Allows you to run this workflow manually from the Actions tab
concurrency:
group: ${{ github.ref }}-${{ github.workflow }}
cancel-in-progress: true
permissions:
contents: read
env:
WORKING_DIRECTORY: ./assets/examples/pipx
jobs:
default:
runs-on: ubuntu-latest
steps:
- uses: percebus/github-actions-common/.github/actions/checkout@main
- uses: percebus/github-actions-python/.github/actions/setup@main
- uses: ./.github/actions/install-upgrade
with:
requirements-file: ${{ env.WORKING_DIRECTORY }}/requirements.upgrade.txt
- uses: ./.github/actions/install
with:
# empty
requirements-file: ${{ env.WORKING_DIRECTORY }}/requirements.txt
- uses: ./.github/actions/freeze
- name: pipx --version
run: pipx --version