aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorAshlynn Anderson <pea@pea.sh>2021-05-21 05:13:19 -0400
committerAshlynn Anderson <pea@pea.sh>2021-05-21 05:13:19 -0400
commite37882710bd91d95bac967d342e5aea846cce783 (patch)
treeaedc06ca15d26e172b64baf1c1e67253172202fd /.github
parent9d76233597aaad1c9ab188bde83c3b66d9bd3d0a (diff)
Consolidate git/libgit CI steps
Seems unnecessary to have two separate steps here.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/test.yml9
1 files changed, 2 insertions, 7 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 7ade9f1..8199358 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -36,11 +36,6 @@ jobs:
git config --global user.name "A U Thor"
git config --global user.email a.u.thor@example.com
git tag 0
- - name: Test with Git
- if: ${{ matrix.git_impl == 'git' }}
+ - name: Test
run: |
- make test-git DASH_DIR=$PWD
- - name: Test with libgit
- if: ${{ matrix.git_impl == 'libgit' }}
- run: |
- make test-libgit DASH_DIR=$PWD
+ make test-${{ matrix.git_impl }} DASH_DIR=$PWD