From 8bd3f64b77f39d602daf4e2c4452faafc34ac05c Mon Sep 17 00:00:00 2001 From: Sebastiaan Brand Date: Mon, 27 May 2024 13:27:19 +0200 Subject: [PATCH] update to test workflow --- .github/workflows/python-app.yml | 23 ++++++----------------- 1 file changed, 6 insertions(+), 17 deletions(-) diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index 3ca7e94..60c573c 100644 --- a/.github/workflows/python-app.yml +++ b/.github/workflows/python-app.yml @@ -3,33 +3,22 @@ name: Python application -on: - push: - branches: - - main - - myqlm - paths-ignore: - - 'docs/**' - - '.github/**' - - 'README.md' - pull_request: - branches: [ main ] - paths-ignore: - - 'doc/**' - - '.github/**' - - 'README.md' +on: [push] jobs: build: runs-on: ubuntu-latest + strategy: + matrix: + python-version: ["3.10"] steps: - uses: actions/checkout@v2 - - name: Set up Python 3.8 + - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v2 with: - python-version: "3.8" + python-version: "${{ matrix.python-version }}" - name: Install dependencies run: | python -m pip install --upgrade pip