From 395c7b6760d64af8fa3bbd67ee764d06a45200a0 Mon Sep 17 00:00:00 2001 From: Jacob Strieb Date: Fri, 22 Dec 2023 10:32:19 -0500 Subject: [PATCH] Run main tests separately from publishing In practice, I'll have to push to both `master`, and whatever tag I create. As such, I can wait for the tests on `master` to complete before I push a tag. That will reduce redundant test running, and make the publish workflow faster. --- .github/workflows/publish.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 3acf97a..5e7d3ca 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -14,11 +14,8 @@ defaults: shell: bash -euxo pipefail {0} jobs: - test: - uses: ./.github/workflows/test.yml build-packages: name: Build distribution packages - needs: test runs-on: ubuntu-latest steps: - uses: actions/checkout@v4