From 3495b390830346ca9bfcc4b9ddc5f659fcd1731e Mon Sep 17 00:00:00 2001 From: Tom Everett Date: Thu, 11 Jun 2020 19:21:23 -0600 Subject: [PATCH] split build --- .github/workflows/main.yml | 20 ++++++++++++++------ 1 file changed, 14 insertions(+), 6 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c01ddd5..b6219b7 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -6,12 +6,20 @@ on: pull_request: branches: [ master ] jobs: - build: - runs-on: ${{ matrix.os }} - strategy: - matrix: - os: [ubuntu-latest, macos-latest] - fail-fast: false + build-ubuntu: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + + - name: get libdatetime-perl + run: sudo apt-get install libdatetime-perl + + - name: build + run: make clean;make alt; make clean; make + + build-macos: + runs-on: macos-latest steps: - uses: actions/checkout@v2