From 32a4270f983f0dc5c4aaa83ff11e6be9744d717b Mon Sep 17 00:00:00 2001 From: Steffen Deusch Date: Thu, 11 Jul 2024 17:36:13 +0200 Subject: [PATCH] fix branch name in CI --- .github/workflows/ci.yml | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7838480..43bc615 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,7 +3,7 @@ on: pull_request: push: branches: - - master + - main jobs: test: runs-on: ubuntu-20.04 @@ -13,12 +13,10 @@ jobs: fail-fast: false matrix: include: - - pair: - elixir: 1.11 - otp: 21 - - pair: - elixir: 1.17 - otp: 27 + - elixir: 1.11 + otp: 21 + - elixir: 1.17 + otp: 27 lint: lint steps: - uses: actions/checkout@v4