From ed0354b85c2734aeef4ddd71e38a4a05206033cc Mon Sep 17 00:00:00 2001 From: Christoph Hille <38468371+hille721@users.noreply.github.com> Date: Thu, 7 Sep 2023 16:45:43 +0200 Subject: [PATCH 1/3] fix indentation --- README.md | 46 +++++++++++++++++++++++----------------------- 1 file changed, 23 insertions(+), 23 deletions(-) diff --git a/README.md b/README.md index 80eac34..7d19d54 100644 --- a/README.md +++ b/README.md @@ -38,29 +38,29 @@ jobs: lint pkg -build: - name: ${{ matrix.name }} - runs-on: ${{ matrix.os || 'ubuntu-22.04' }} - needs: pre - strategy: # thais the magic part, entire matrix comes from pre job! - matrix: ${{ fromJson(needs.pre.outputs.matrix) }} - - steps: # common steps used to test with tox - - uses: actions/checkout@main - with: - fetch-depth: 0 - - - name: Set up python ${{ matrix.python_version }} - uses: actions/setup-python@v4 - with: - python-version: ${{ matrix.python_version }} - - - name: Install tox - run: | - python -m pip install -U pip - pip install tox - - - run: tox run -e ${{ matrix.passed_name }} + build: + name: ${{ matrix.name }} + runs-on: ${{ matrix.os || 'ubuntu-22.04' }} + needs: pre + strategy: # thais the magic part, entire matrix comes from pre job! + matrix: ${{ fromJson(needs.pre.outputs.matrix) }} + + steps: # common steps used to test with tox + - uses: actions/checkout@main + with: + fetch-depth: 0 + + - name: Set up python ${{ matrix.python_version }} + uses: actions/setup-python@v4 + with: + python-version: ${{ matrix.python_version }} + + - name: Install tox + run: | + python -m pip install -U pip + pip install tox + + - run: tox run -e ${{ matrix.passed_name }} ```

From 501c29881bdf6c29c7e0c0b69ba82d7d37fd17b3 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Thu, 7 Sep 2023 14:46:38 +0000 Subject: [PATCH 2/3] chore: auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 7d19d54..795c465 100644 --- a/README.md +++ b/README.md @@ -44,22 +44,22 @@ jobs: needs: pre strategy: # thais the magic part, entire matrix comes from pre job! matrix: ${{ fromJson(needs.pre.outputs.matrix) }} - + steps: # common steps used to test with tox - uses: actions/checkout@main with: fetch-depth: 0 - + - name: Set up python ${{ matrix.python_version }} uses: actions/setup-python@v4 with: python-version: ${{ matrix.python_version }} - + - name: Install tox run: | python -m pip install -U pip pip install tox - + - run: tox run -e ${{ matrix.passed_name }} ``` From 9f3aa8c7155c153341e4afb1ba1bc1739c61d275 Mon Sep 17 00:00:00 2001 From: Christoph Hille <38468371+hille721@users.noreply.github.com> Date: Thu, 7 Sep 2023 16:48:31 +0200 Subject: [PATCH 3/3] typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 795c465..0c86835 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ jobs: name: ${{ matrix.name }} runs-on: ${{ matrix.os || 'ubuntu-22.04' }} needs: pre - strategy: # thais the magic part, entire matrix comes from pre job! + strategy: # this the magic part, entire matrix comes from pre job! matrix: ${{ fromJson(needs.pre.outputs.matrix) }} steps: # common steps used to test with tox