From ee393292d6ddf5312df84fab5888aa63308a1321 Mon Sep 17 00:00:00 2001 From: Alex Kotov Date: Tue, 14 Jun 2022 16:14:08 +0300 Subject: [PATCH] Main: fix CI --- .github/workflows/main.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index b16150f..126e8ab 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -33,18 +33,18 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - pkg: - - main: 'all' - - main: 'file' - - main: 'ntoa' - other: '--without-printf --without-units' - - main: 'printf' + packages: + - without: 'all' + - without: 'io' + - without: 'ntoa' + dependencies: '--without-printf --without-units' + - without: 'printf' steps: - uses: actions/checkout@v2 - name: autogen run: ./autogen.sh - name: configure - run: ./configure --enable-debug --enable-tests --enable-tests-python --without-${{matrix.pkg.main}} ${{matrix.pkg.other}} + run: ./configure --enable-debug --enable-tests --enable-tests-python --without-${{matrix.packages.without}} ${{matrix.packages.dependencies}} - name: make run: make - name: check