From 647239a43a68c9a4342349c7fd126db710ae125e Mon Sep 17 00:00:00 2001 From: Oleksandr Chychkan Date: Fri, 20 Aug 2021 12:12:40 -0700 Subject: [PATCH] Create simple CI workflow for MacOS Catalina (#24) --- .github/workflows/verify-setup-catalina.yml | 35 +++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 .github/workflows/verify-setup-catalina.yml diff --git a/.github/workflows/verify-setup-catalina.yml b/.github/workflows/verify-setup-catalina.yml new file mode 100644 index 0000000..e7502b1 --- /dev/null +++ b/.github/workflows/verify-setup-catalina.yml @@ -0,0 +1,35 @@ +# This workflow will install Python dependencies, run tests and lint with a variety of Python versions +# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions + +name: Verify setup + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + + runs-on: macos-10.15 + strategy: + fail-fast: true + matrix: + python-version: [3.6, 3.7, 3.8, 3.9] + + steps: + - uses: actions/checkout@v2 + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v2 + with: + python-version: ${{ matrix.python-version }} + - name: Install dependencies + run: | + python --version + python -m pip install --upgrade pip + python -m pip install virtualenv + virtualenv --version + - name: Run 0_setup.sh + run: | + ./scripts/0_setup.sh