16 lines
228 B
YAML
16 lines
228 B
YAML
name: integration-test
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 10
|
|
|
|
steps:
|
|
- uses: actions/checkout@master
|
|
|
|
- name: integration-test
|
|
run: ./integration-test.sh
|