From c7a4ed6d3e0bbbf3a0ba61486b646251492836e3 Mon Sep 17 00:00:00 2001 From: Theofilos Manitaras Date: Thu, 30 Sep 2021 10:55:17 +0200 Subject: [PATCH] Add GitHub Action to run unittests on macOS --- .github/workflows/main.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 6e6fed2a07..04bbf61c31 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -33,6 +33,21 @@ jobs: with: fail_ci_if_error: true + unittest-macos: + runs-on: macos-latest + steps: + - uses: actions/checkout@v2 + - name: Set up Python 3.9 + uses: actions/setup-python@v2 + with: + python-version: 3.9 + - name: Install dependencies + run: | + ./bootstrap.sh + - name: Generic Unittests + run: | + ./test_reframe.py + modulestest: runs-on: ubuntu-latest strategy: