setup-python/.github/workflows/workflow.yml

27 lines
503 B
YAML
Raw Normal View History

2019-07-12 03:15:37 +07:00
name: Main workflow
on: [push]
jobs:
run:
name: Run
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: [ubuntu-latest, windows-latest]
2019-07-26 09:59:00 +07:00
steps:
2019-07-24 00:22:18 +07:00
- name: Checkout
uses: actions/checkout@master
2019-07-12 03:15:37 +07:00
- name: Set Node.js 10.x
2019-07-17 01:35:13 +07:00
uses: actions/setup-node@master
2019-07-12 03:15:37 +07:00
with:
node-version: 10.x
2019-07-12 03:15:37 +07:00
- name: npm install
run: npm install
- name: Lint
run: npm run format-check
- name: npm test
run: npm test