16 lines
299 B
YAML
16 lines
299 B
YAML
name: Sanity Tests
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
jobs:
|
|
test:
|
|
name: Sanity tests
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
- name: Run tests
|
|
run: |
|
|
make sanity-test |