Trying out Github Actions

This commit is contained in:
Krzosa Karol
2023-12-31 09:44:53 +01:00
parent 7b87ab0314
commit 3a864cbbcf

View File

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