git-auto-commit-action/.github/workflows/tests.yml
2021-09-26 11:07:08 +02:00

27 lines
398 B
YAML

name: tests
on:
push:
branches:
- master
pull_request:
jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
os: [ubuntu-latest, windows-latest]
name: Tests ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Install testing dependencies
run: yarn install
- name: Run Tests
run: yarn test