2019-07-11 16:15:37 -04:00
|
|
|
name: Main workflow
|
2020-05-01 12:52:58 -04:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
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
|
2020-03-26 11:39:48 -04:00
|
|
|
uses: actions/checkout@v2
|
2019-07-23 13:22:18 -04:00
|
|
|
|
2020-03-26 11:39:48 -04:00
|
|
|
- name: Set Node.js 12.x
|
|
|
|
uses: actions/setup-node@v1
|
2019-07-11 16:15:37 -04:00
|
|
|
with:
|
2020-03-26 11:39:48 -04:00
|
|
|
node-version: 12.x
|
2019-07-11 16:15:37 -04:00
|
|
|
|
|
|
|
- name: npm install
|
|
|
|
run: npm install
|
|
|
|
|
|
|
|
- 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
|