-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathaction.yml
More file actions
43 lines (23 loc) · 849 Bytes
/
action.yml
File metadata and controls
43 lines (23 loc) · 849 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
38
39
40
41
42
43
name: 'Composite Action Example'
description: 'A composite action to checkout code and set up Node.js'
# inputs:
# python-version:
# description: 'Python version to use'
# required: true
runs:
using: 'composite'
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up python
# uses: aparnajyothi-y/setup-python@temp-dir-#361
# uses: priya-kinthali/setup-python@sample-361
# uses: gowridurgad/setup-python@pip-install
uses: actions/setup-python@main
with:
# python-version : ${{ inputs.python-version }}
python-version: '3.11'
cache: pip
cache-dependency-path: requirements.txt
- run: pip install -r requirements.txt
shell: bash