2023-04-07 01:04:00 +00:00
|
|
|
name: Test
|
2023-04-06 13:19:08 +00:00
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
branches: '*'
|
|
|
|
push:
|
|
|
|
branches: '*'
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
2023-04-06 13:28:13 +00:00
|
|
|
name: "Run basic test suite"
|
2023-04-06 13:19:08 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-04-06 19:20:22 +00:00
|
|
|
- name: "Clone project repository"
|
2023-04-06 13:19:08 +00:00
|
|
|
uses: actions/checkout@v3
|
2023-04-06 19:20:22 +00:00
|
|
|
- name: "Install Python"
|
|
|
|
uses: cerc-io/setup-python@v4
|
|
|
|
with:
|
|
|
|
python-version: '3.8'
|
2023-04-06 19:36:58 +00:00
|
|
|
- name: "Print Python version"
|
2023-04-06 19:20:22 +00:00
|
|
|
run: python3 --version
|
|
|
|
- name: "Install shiv"
|
|
|
|
run: pip install shiv
|
2023-04-06 19:24:17 +00:00
|
|
|
- name: "Build local shiv package"
|
2023-04-06 19:20:22 +00:00
|
|
|
run: ./scripts/build_shiv_package.sh
|
2023-04-06 19:32:56 +00:00
|
|
|
- name: "Run smoke tests"
|
2023-04-06 19:35:16 +00:00
|
|
|
run: ./tests/smoke-test/run-smoke-test.sh
|