-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update version numbers, include small improvements in pipelines (#127)
- Loading branch information
Showing
11 changed files
with
71 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,6 +20,8 @@ jobs: | |
uses: fkirc/[email protected] | ||
|
||
- uses: actions/checkout@v2 | ||
with: | ||
lfs: false | ||
|
||
- name: Install miniconda | ||
run: | | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,6 +20,8 @@ jobs: | |
uses: fkirc/[email protected] | ||
|
||
- uses: actions/checkout@v2 | ||
with: | ||
lfs: false | ||
|
||
- uses: conda-incubator/setup-miniconda@v2 | ||
with: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,6 +26,8 @@ jobs: | |
uses: fkirc/[email protected] | ||
|
||
- uses: actions/checkout@v2 | ||
with: | ||
lfs: false | ||
|
||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v2 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,6 +23,8 @@ jobs: | |
uses: fkirc/[email protected] | ||
|
||
- uses: actions/checkout@v2 | ||
with: | ||
lfs: false | ||
|
||
- uses: conda-incubator/setup-miniconda@v2 | ||
with: | ||
|
@@ -49,6 +51,8 @@ jobs: | |
uses: fkirc/[email protected] | ||
|
||
- uses: actions/checkout@v2 | ||
with: | ||
lfs: false | ||
|
||
- uses: conda-incubator/setup-miniconda@v2 | ||
with: | ||
|
@@ -84,10 +88,12 @@ jobs: | |
uses: fkirc/[email protected] | ||
|
||
- uses: actions/checkout@v2 | ||
with: | ||
lfs: false | ||
|
||
- uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.9' | ||
python-version: '3.10' | ||
|
||
- name: Install ConFlowGen | ||
run: | | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ on: | |
|
||
jobs: | ||
build: | ||
name: Check code quality with pylint and flake8 | ||
name: Check code quality with pylint, flake8, and flake8_nb | ||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
|
@@ -25,6 +25,8 @@ jobs: | |
uses: fkirc/[email protected] | ||
|
||
- uses: actions/checkout@v2 | ||
with: | ||
lfs: false | ||
|
||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v2 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,11 +20,13 @@ jobs: | |
uses: fkirc/[email protected] | ||
|
||
- uses: actions/checkout@v2 | ||
with: | ||
lfs: false | ||
|
||
- name: Set up Python 3.8 | ||
- name: Set up Python 3.10 | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: 3.8 | ||
python-version: "3.10" | ||
|
||
- name: Install Python dependencies | ||
run: | | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters