From 9e314f43b6f21e4ebcac37cacee5549c7db07a63 Mon Sep 17 00:00:00 2001 From: Adrien Piquerez Date: Mon, 5 Feb 2024 10:45:37 +0100 Subject: [PATCH] Skip submit tests on pull requests --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 60f46ac..08462d7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -43,9 +43,12 @@ jobs: jvm: ${{ matrix.jvm }} apps: sbt - run: sbt test - - run: sbt scripted + - run: sbt "scripted dependency-manifest/*" + - run: sbt "scripted submit-snapshot/*" + if: github.event_name == 'push' || github.event.pull_request.head.repo.owner.login == 'scalacenter' test-action: + if: github.event_name == 'push' || github.event.pull_request.head.repo.owner.login == 'scalacenter' strategy: matrix: os: [ubuntu-latest, macOS-latest, windows-latest]