Specify gitea server url for checkout

This commit is contained in:
Kevin Trogant 2024-07-15 16:53:25 +02:00
parent 6bd71778d2
commit 654192c258

View File

@ -16,7 +16,7 @@ on:
jobs:
build:
name: Build on ${{ matrix.os }}
name: Build on ${{ matrix.os }} with Meson v${{ matrix.meson_version }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
@ -25,6 +25,8 @@ jobs:
steps:
- name: Checkout Code
uses: actions/checkout@v4
with:
github-server-url: 'https://libneat.hopto.org/git/'
- name: Setup Python
uses: actions/setup-python@v5
with:
@ -39,4 +41,9 @@ jobs:
run: meson compile -C build
- name: Run Tests
run: meson test -C build/ -v
- name: Upload Test Log
uses: actions/upload-artifact@v4
if: failure()
with:
name: ${{ matrix.os }}_Meson_Testlog
path: build/meson-logs/testlog.txt