File tree 3 files changed +41
-2
lines changed
flowchem/components/dummy
3 files changed +41
-2
lines changed Original file line number Diff line number Diff line change
1
+ name : Setup Nox
2
+ description : ' Prepares all python versions for nox'
3
+
4
+ runs :
5
+ using : composite
6
+ steps :
7
+ - uses : actions/setup-python@v3
8
+ with :
9
+ python-version : " pypy-3.7"
10
+ - uses : actions/setup-python@v3
11
+ with :
12
+ python-version : " pypy-3.8"
13
+ - uses : actions/setup-python@v3
14
+ with :
15
+ python-version : " pypy-3.9"
16
+ - uses : actions/setup-python@v3
17
+ with :
18
+ python-version : " 2.7"
19
+ - uses : actions/setup-python@v3
20
+ with :
21
+ python-version : " 3.5"
22
+ - uses : actions/setup-python@v3
23
+ with :
24
+ python-version : " 3.6"
25
+ - uses : actions/setup-python@v3
26
+ with :
27
+ python-version : " 3.7"
28
+ - uses : actions/setup-python@v3
29
+ with :
30
+ python-version : " 3.8"
31
+ - uses : actions/setup-python@v3
32
+ with :
33
+ python-version : " 3.9"
34
+ - uses : actions/setup-python@v3
35
+ with :
36
+ python-version : " 3.10"
37
+ - name : " Install nox"
38
+ run : pipx install nox
39
+ shell : bash
Original file line number Diff line number Diff line change @@ -21,10 +21,10 @@ jobs:
21
21
22
22
steps :
23
23
- name : Checkout
24
- uses : actions/checkout@v2
24
+ uses : actions/checkout@v3
25
25
26
26
- name : Setup nox
27
- uses : excitedleigh/ setup-nox@v2.0.0
27
+ uses : ./.github/actions/ setup-nox
28
28
29
29
- name : Run nox
30
30
run : nox
You can’t perform that action at this time.
0 commit comments