From 46df804ad991af1a49a781c4d018185c15e6a068 Mon Sep 17 00:00:00 2001 From: John D Pell Date: Sun, 16 Jan 2022 15:23:30 -0800 Subject: [PATCH] CI: fix version of OSX runner MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Now that Mac OS X is "version 11", the "minor" version is no longer relevant. Alsö, clean up the run conditions. --- .github/workflows/ci.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3c7ba2ae..5b629e41 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,17 +1,13 @@ name: CI # Triggers the workflow on push or pull request events -on: - push: - branches: [ master ] - pull_request: - branches: [ master ] +on: [push, pull_request] jobs: bats-test: strategy: matrix: - os: [ubuntu-20.04, ubuntu-18.04, macos-10.15, macos-11.0] + os: [ubuntu-20.04, ubuntu-18.04, macos-10.15, macos-11] runs-on: ${{ matrix.os }}