From a1a8cff0b32d979222c332d69d8b4bc6ea771504 Mon Sep 17 00:00:00 2001 From: James Bayley <36523314+jamesbayley@users.noreply.github.com> Date: Wed, 14 Feb 2024 12:10:57 +0000 Subject: [PATCH] Rename to ci.yml and update action --- .github/workflows/{build.yml => ci.yml} | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) rename .github/workflows/{build.yml => ci.yml} (67%) diff --git a/.github/workflows/build.yml b/.github/workflows/ci.yml similarity index 67% rename from .github/workflows/build.yml rename to .github/workflows/ci.yml index 5928b93..a20c546 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/ci.yml @@ -1,14 +1,20 @@ -name: Build +name: CI on: push: - branches: main + branches: + - '*' + - '!main' + +defaults: + run: + shell: pwsh jobs: - setup: - name: CI + build: + name: Build runs-on: Ubuntu-Latest - + steps: - name: Checkout Repository uses: actions/checkout@v3