diff --git a/.forgejo/workflows/units.yml b/.forgejo/workflows/units.yml index f49504e..6ca12b1 100644 --- a/.forgejo/workflows/units.yml +++ b/.forgejo/workflows/units.yml @@ -16,6 +16,14 @@ jobs: with: submodules: true + - name: Update repo + run: | + sudo apt-get update + + - name: Install check + run: | + sudo apt-get -y install check + - name: Build unit tests run: | make unit diff --git a/.forgejoe/workflows/units.yml b/.forgejoe/workflows/units.yml deleted file mode 100644 index 825e474..0000000 --- a/.forgejoe/workflows/units.yml +++ /dev/null @@ -1,25 +0,0 @@ -Name: Unit Tests - - -on: - push: - branches: [ 'master', 'main', 'release/**' ] - pull_request: - branches: [ '*' ] - -jobs: - unit_test: - runs-on: ubuntu-24.04 - - steps: - - uses: actions/checkout@v2 - with: - submodules: true - - - name: Build unit tests - run: | - make unit - - - name: Run unit tests - run: | - test/unit/unit