The test.sh script will run the cargo test and save a formatted output from each project and then append them to a final log file which will be the data to be uploaded to the spreadsheet
18 lines
252 B
YAML
18 lines
252 B
YAML
name: UI Tests
|
|
|
|
on:
|
|
pull_request:
|
|
workflow_dispatch:
|
|
workflow_call:
|
|
|
|
jobs:
|
|
ui-tests:
|
|
runs-on: self-hosted
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Run UI tests
|
|
run: |
|
|
bash .github/workflows/test.sh ui/
|