Skip to content

Commit 4c30f67

Browse files
committed
daisylb/setup-nox#419 is not yet address, vendor and fix GH action
1 parent 3ee2f8c commit 4c30f67

File tree

3 files changed

+41
-2
lines changed

3 files changed

+41
-2
lines changed

.github/actions/setup-nox/action.yml

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
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

.github/workflows/python-app.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ jobs:
2121

2222
steps:
2323
- name: Checkout
24-
uses: actions/checkout@v2
24+
uses: actions/checkout@v3
2525

2626
- name: Setup nox
27-
uses: excitedleigh/setup-nox@v2.0.0
27+
uses: ./.github/actions/setup-nox
2828

2929
- name: Run nox
3030
run: nox

flowchem/components/dummy/README.md

Whitespace-only changes.

0 commit comments

Comments
 (0)