mirror of
https://github.com/frej/fast-export.git
synced 2026-01-24 15:19:02 +01:00
22 lines
394 B
YAML
22 lines
394 B
YAML
on:
|
|
push:
|
|
branches: [master]
|
|
pull_request:
|
|
# The branches below must be a subset of the branches above
|
|
branches: [master]
|
|
|
|
jobs:
|
|
test:
|
|
name: Run test suite
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 1
|
|
submodules: 'recursive'
|
|
|
|
- name: Run tests
|
|
run: ./run-tests
|