From 21323e35f17761ca891d86957192ed6456fdaf2c Mon Sep 17 00:00:00 2001 From: "Paulo F. Oliveira" Date: Fri, 7 Jun 2024 20:23:01 +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 ae7f3c9..7b1809a 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}}