From 67bb6837485fd334451eda8c1c2dbea93b57b4dc Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Sun, 11 Dec 2022 00:10:30 +0100 Subject: [PATCH] bug fix --- .github/workflows/main.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 9035094..566e98a 100755 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -8,10 +8,6 @@ jobs: matrix: platform: [x86, x64] os: [ubuntu-latest] - builld: - - name: packages - install_packages: curl, libcurl4-openssl-dev - install_steps: packages runs-on: '${{ matrix.os }}' if: "!contains(github.event.head_commit.message, 'NO_CI')" name: 'code-tests: ${{ matrix.os }} / ${{ matrix.platform }}' @@ -25,6 +21,10 @@ jobs: with: version: latest platform: '${{ matrix.platform }}' + - name: Install packages + run: | + sudo apt-get update + sudo apt-get install curl, libcurl4-openssl-dev - name: Run tests run: | chmod +x ./tests/test.sh