2023-08-27 22:37:12 +00:00
|
|
|
name: Full Stack Tests
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- develop
|
|
|
|
|
|
|
|
pull_request:
|
|
|
|
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-09-15 18:30:18 +00:00
|
|
|
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac
|
2023-08-27 22:37:12 +00:00
|
|
|
|
2023-10-11 01:09:45 +00:00
|
|
|
- name: Install Build Dependencies
|
|
|
|
uses: ./.github/actions/build-dependencies
|
2023-08-27 22:37:12 +00:00
|
|
|
with:
|
2023-10-11 01:09:45 +00:00
|
|
|
github-token: ${{ inputs.github-token }}
|
2023-08-27 22:37:12 +00:00
|
|
|
|
|
|
|
- name: Run Full Stack Docker tests
|
|
|
|
run: cd tests/full-stack && GITHUB_CI=true RUST_BACKTRACE=1 cargo test
|