Skip to content

build: Added basic CI support #18

build: Added basic CI support

build: Added basic CI support #18

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
tests:
timeout-minutes: ${{ fromJSON(vars.GHA_DEFAULT_TIMEOUT || 10) }}
name: Busted Tests
runs-on: ubuntu-24.04
permissions:
checks: write
pull-requests: write
steps:
- name: Checkout source code
uses: actions/checkout@main
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Run tests
run: make test-unit-ci DOCKER_RUN_FLAGS_TTY=''
- name: Publish Test Results
uses: EnricoMi/publish-unit-test-result-action@v2
if: always()
with:
files: |
test-results/**/*.xml
test-results/**/*.trx
test-results/**/*.json