-
Notifications
You must be signed in to change notification settings - Fork 312
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2333 from tilne/release-2.10.1
v2.10.1: Merge develop into release-2.10
- Loading branch information
Showing
210 changed files
with
4,962 additions
and
1,597 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 |
---|---|---|
@@ -0,0 +1,74 @@ | ||
name: ParallelCluster CI | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
build: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [ubuntu-latest] | ||
name: | ||
- Python 2.7 Tests | ||
- Python 3.4 Tests | ||
- Python 3.5 Tests | ||
- Python 3.6 Tests | ||
- Python 3.7 Tests | ||
- Python 3.8 Tests | ||
- Python 3.9 Tests | ||
- Python 3.8 Tests Coverage | ||
- Code Checks | ||
- CloudFormation Templates Checks | ||
include: | ||
- name: Python 2.7 Tests | ||
python: 2.7 | ||
toxdir: cli | ||
toxenv: py27-nocov | ||
- name: Python 3.4 Tests | ||
python: 3.4 | ||
toxdir: cli | ||
toxenv: py34-nocov | ||
- name: Python 3.5 Tests | ||
python: 3.5 | ||
toxdir: cli | ||
toxenv: py35-nocov | ||
- name: Python 3.6 Tests | ||
python: 3.6 | ||
toxdir: cli | ||
toxenv: py36-nocov | ||
- name: Python 3.7 Tests | ||
python: 3.7 | ||
toxdir: cli | ||
toxenv: py37-nocov | ||
- name: Python 3.8 Tests | ||
python: 3.8 | ||
toxdir: cli | ||
toxenv: py38-nocov | ||
- name: Python 3.9 Tests | ||
python: 3.9 | ||
toxdir: cli | ||
toxenv: py39-nocov | ||
- name: Python 3.8 Tests Coverage | ||
python: 3.8 | ||
toxdir: cli | ||
toxenv: py38-cov | ||
- name: Code Checks | ||
python: 3.6 | ||
toxdir: cli | ||
toxenv: code-linters | ||
- name: CloudFormation Templates Checks | ||
python: 3.6 | ||
toxdir: cli | ||
toxenv: cfn-format-check,cfn-lint,cfn-tests | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Setup Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ matrix.python }} | ||
- name: Install Tox and any other packages | ||
run: pip install tox | ||
- name: Run Tox | ||
run: cd ${{ matrix.toxdir }} && tox -e ${{ matrix.toxenv }} |
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.