3
0
Fork 0
mirror of https://gitea.com/actions/setup-python.git synced 2024-11-22 10:09:35 +01:00
setup-python/.github/workflows/workflow.yml
2019-07-23 13:22:18 -04:00

26 lines
500 B
YAML

name: Main workflow
on: [push]
jobs:
run:
name: Run
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: [ubuntu-latest, windows-latest]
actions:
- name: Checkout
uses: actions/checkout@master
- name: Set Node.js 10.x
uses: actions/setup-node@master
with:
version: 10.x
- name: npm install
run: npm install
- name: Lint
run: npm run format-check
- name: npm test
run: npm test