200d3c584f
Signed-off-by: Rushi Agrawal <agrrushi@amazon.com>
29 lines
479 B
YAML
29 lines
479 B
YAML
name: Integration tests
|
|
|
|
on:
|
|
pull_request:
|
|
paths-ignore:
|
|
- 'README.md'
|
|
branches:
|
|
- "*"
|
|
push:
|
|
paths-ignore:
|
|
- 'README.md'
|
|
branches:
|
|
- "*"
|
|
|
|
jobs:
|
|
assemble:
|
|
name: Assemble
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
stack_version: ['7.10.2']
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
- run: "./.ci/run-tests"
|
|
name: Integ ${{ matrix.stack_version }}
|