From 9b5e2a3debe53660bd391dd39035c28cd4deb38f Mon Sep 17 00:00:00 2001 From: mrava87 Date: Tue, 3 Oct 2023 22:33:35 +0300 Subject: [PATCH] minor: added mac-os and python 3.9 and 3.10 to github actions --- .github/workflows/build.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 128375b..6f53f1e 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -4,12 +4,12 @@ on: [push, pull_request] jobs: build: - - runs-on: ubuntu-latest strategy: matrix: - python-version: [3.8] + platform: [ ubuntu-latest, macos-latest ] + python-version: ["3.8", "3.9", "3.10"] + runs-on: ${{ matrix.platform }} steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }}