From 4d7d12fe5f0e50c609a1d0ccce787223f78c600b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81d=C3=A1m=20Kov=C3=A1cs?= Date: Mon, 19 Dec 2022 16:56:04 +0100 Subject: [PATCH] CI test --- .github/workflows/github-actions-demo.yml | 24 +++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/github-actions-demo.yml diff --git a/.github/workflows/github-actions-demo.yml b/.github/workflows/github-actions-demo.yml new file mode 100644 index 0000000..f263235 --- /dev/null +++ b/.github/workflows/github-actions-demo.yml @@ -0,0 +1,24 @@ +name: Alma build + +on: [push] + +jobs: + build: + runs-on: ${{ matrix.target.runner }} + strategy: + matrix: + target: + - triple: x86_64-pc-windows-gnu + runner: windows-latest + - triple: x86_64-unknown-linux-gnu + runner: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Setup dotnet + uses: actions/setup-dotnet@v3 + with: + dotnet-version: '7.0.x' + - name: Install dependencies + run: dotnet restore src/Alma + - name: Build + run: dotnet build src/Alma