From 35539781a16a9e138803a6d5642734825f238ce7 Mon Sep 17 00:00:00 2001 From: Robb-Fr Date: Tue, 23 Apr 2024 15:19:14 +0200 Subject: [PATCH] tries running on arm64 --- .github/workflows/python-app.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index ef1a280..2ccd362 100644 --- a/.github/workflows/python-app.yml +++ b/.github/workflows/python-app.yml @@ -9,20 +9,17 @@ on: pull_request: branches: [ "main" ] -# permissions: -# contents: read - jobs: build: - runs-on: ubuntu-20.04 + runs-on: macos-14 steps: - uses: actions/checkout@v4 - - name: Set up Python 3.9 + - name: Set up Python 3.10 uses: actions/setup-python@v5 with: - python-version: "3.9.2" + python-version: "3.10.11" cache: 'pip' # caching pip dependencies - name: Install dependencies run: |