-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Test on MacOS First step is to see if it runs * Only start redis on Linux Not supported on OSX * Fix if statement Two problems: 1) they call ubuntu-latest "Linux" and 2) we don't need the expression part * Update the if again Following the example from here: https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#example-using-contexts * Skip Redis tests on OSX * Do not need the module-level scope * Test for connection to redis, not CLI Redis can still be accessible not on the Path * Test using Python 3.8 * Update Python requirements * Write Parsl logs and proxies to different directories
- Loading branch information
Showing
4 changed files
with
29 additions
and
12 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,21 +4,24 @@ on: [push] | |
|
||
jobs: | ||
build-linux: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
max-parallel: 5 | ||
|
||
matrix: | ||
os: [ubuntu-latest, macos-latest] | ||
max-parallel: 5 | ||
runs-on: ${{ matrix.os }} | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set up Python | ||
uses: actions/setup-python@v3 | ||
with: | ||
python-version: 3.7 # Start with the earliest version | ||
python-version: 3.8 # Start with the earliest version | ||
- name: Install dependencies | ||
run: | | ||
pip install -U pip setuptools | ||
pip install -e.[globus,test] | ||
- name: Start Redis | ||
if: ${{ runner.os == 'Linux' }} | ||
uses: supercharge/[email protected] | ||
- name: Lint with flake8 | ||
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