Files
first/.github/workflows/run-tests.yml
Workflow config file is invalid. Please check your config file: yaml: line 11: did not find expected '-' indicator
2023-12-31 09:44:53 +01:00

14 lines
333 B
YAML

on: [push]
jobs:
run-and-compile-ubuntu:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: sudo apt install clang
- run: sudo source build.sh
run-and-compile-windows:
runs-on: windows-latest
steps:
- uses: TheMrMilchmann/setup-msvc-dev@v3
with:
arch: x64