Files
evol-headers/.gitea/workflows/run_tests.yaml
T
Workflow config file is invalid. Please check your config file: model.ReadWorkflow: yaml: unmarshal errors: line 25: mapping key "uses" already defined at line 21 line 26: mapping key "with" already defined at line 22

29 lines
640 B
YAML

name: Run tests
run-name: Running Tests
on: [push]
jobs:
Run tests:
runs-on: ubuntu-latest
container:
image: git.neosisyphus.com/evol3d/evol-testbed:latest
steps:
- uses: actions/checkout@v4
- name: Configure
run: meson setup build
- name: Run tests
run: meson test -C build
- name: Upload Logs
if: always()
uses: actions/upload-artifact@v3
with:
name: Meson Logs
path: build/meson-logs/meson-setup.txt
uses: actions/upload-artifact@v3
with:
name: Meson Logs
path: build/meson-logs/meson-log.txt