From edc0e9fccbae11065527a54309fa607135ca7773 Mon Sep 17 00:00:00 2001 From: "Paulo F. Oliveira" Date: Fri, 7 Jun 2024 20:22:42 +0100 Subject: [PATCH] Fix CI execution conditions: pull request + push to master --- .github/workflows/ci.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c0dfaee..d1da280 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,6 +1,13 @@ --- name: build -on: [push] +on: + push: + branches: + - master + pull_request: + branches: + - "*" + workflow_dispatch: {} jobs: ci: name: Run checks and tests over ${{matrix.otp_vsn}}