2019-07-11 16:15:37 -04:00
|
|
|
name: Main workflow
|
2020-05-01 12:52:58 -04:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
2020-07-14 10:05:12 -04:00
|
|
|
- main
|
2020-05-01 12:52:58 -04:00
|
|
|
paths-ignore:
|
|
|
|
- '**.md'
|
|
|
|
pull_request:
|
|
|
|
paths-ignore:
|
|
|
|
- '**.md'
|
2019-07-11 16:15:37 -04:00
|
|
|
jobs:
|
|
|
|
run:
|
|
|
|
name: Run
|
|
|
|
runs-on: ${{ matrix.operating-system }}
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
operating-system: [ubuntu-latest, windows-latest]
|
2019-07-25 22:59:00 -04:00
|
|
|
steps:
|
2019-07-23 13:22:18 -04:00
|
|
|
- name: Checkout
|
2022-07-03 14:15:21 -04:00
|
|
|
uses: actions/checkout@v3
|
2019-07-23 13:22:18 -04:00
|
|
|
|
2022-02-25 04:31:18 -05:00
|
|
|
- name: Set Node.js 16.x
|
2022-04-07 06:16:24 -04:00
|
|
|
uses: actions/setup-node@v3
|
2019-07-11 16:15:37 -04:00
|
|
|
with:
|
2022-02-25 04:31:18 -05:00
|
|
|
node-version: 16.x
|
2022-04-07 06:16:24 -04:00
|
|
|
cache: npm
|
2019-07-11 16:15:37 -04:00
|
|
|
|
2022-02-28 02:19:48 -05:00
|
|
|
- name: npm ci
|
|
|
|
run: npm ci
|
2019-07-11 16:15:37 -04:00
|
|
|
|
|
|
|
- name: Lint
|
|
|
|
run: npm run format-check
|
|
|
|
|
|
|
|
- name: npm test
|
|
|
|
run: npm test
|
2020-05-01 12:52:58 -04:00
|
|
|
|
|
|
|
- name: Run with setup-python 2.7
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
python-version: 2.7
|
|
|
|
- name: Verify 2.7
|
|
|
|
run: python __tests__/verify-python.py 2.7
|
|
|
|
|
|
|
|
- name: Run with setup-python 3.5
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
python-version: 3.5
|
|
|
|
- name: Verify 3.5
|
|
|
|
run: python __tests__/verify-python.py 3.5
|
|
|
|
|
|
|
|
- name: Run with setup-python 3.6
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
python-version: 3.6
|
|
|
|
- name: Verify 3.6
|
|
|
|
run: python __tests__/verify-python.py 3.6
|
|
|
|
|
|
|
|
- name: Run with setup-python 3.7
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
python-version: 3.7
|
|
|
|
- name: Verify 3.7
|
|
|
|
run: python __tests__/verify-python.py 3.7
|
|
|
|
|
|
|
|
- name: Run with setup-python 3.8
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
python-version: 3.8
|
|
|
|
- name: Verify 3.8
|
|
|
|
run: python __tests__/verify-python.py 3.8
|
|
|
|
|
|
|
|
- name: Run with setup-python 3.7.5
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
python-version: 3.7.5
|
|
|
|
- name: Verify 3.7.5
|
|
|
|
run: python __tests__/verify-python.py 3.7.5
|
|
|
|
|
|
|
|
- name: Run with setup-python 3.6.7
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
python-version: 3.6.7
|
|
|
|
- name: Verify 3.6.7
|
|
|
|
run: python __tests__/verify-python.py 3.6.7
|
|
|
|
|
|
|
|
- name: Run with setup-python 3.8.1
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
python-version: 3.8.1
|
|
|
|
- name: Verify 3.8.1
|
|
|
|
run: python __tests__/verify-python.py 3.8.1
|
2022-05-23 14:59:37 -04:00
|
|
|
|
|
|
|
- name: Run with setup-python 3.10
|
|
|
|
id: cp310
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
python-version: "3.10"
|
|
|
|
- name: Verify 3.10
|
|
|
|
run: python __tests__/verify-python.py 3.10
|
|
|
|
- name: Run python-path sample 3.10
|
|
|
|
run: pipx run --python '${{ steps.cp310.outputs.python-path }}' nox --version
|