1
0
Fork 0
mirror of https://github.com/actions/setup-python.git synced 2024-09-20 00:56:43 +00:00
setup-python/.github/workflows/workflow.yml

92 lines
1.9 KiB
YAML
Raw Normal View History

2019-07-11 20:15:37 +00:00
name: Main workflow
on:
push:
branches:
2020-07-14 14:05:12 +00:00
- main
paths-ignore:
- '**.md'
pull_request:
paths-ignore:
- '**.md'
2019-07-11 20:15:37 +00:00
jobs:
run:
name: Run
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: [ubuntu-latest, windows-latest]
2019-07-26 02:59:00 +00:00
steps:
2019-07-23 17:22:18 +00:00
- name: Checkout
uses: actions/checkout@v2
2019-07-23 17:22:18 +00:00
2022-02-25 09:31:18 +00:00
- name: Set Node.js 16.x
uses: actions/setup-node@v3
2019-07-11 20:15:37 +00:00
with:
2022-02-25 09:31:18 +00:00
node-version: 16.x
cache: npm
2019-07-11 20:15:37 +00:00
2022-02-28 07:19:48 +00:00
- name: npm ci
run: npm ci
2019-07-11 20:15:37 +00:00
- name: Lint
run: npm run format-check
- name: npm test
run: npm test
- 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