Skip to content

Commit

Permalink
update to test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastiaanbrand committed May 27, 2024
1 parent 1ef9ff3 commit 8bd3f64
Showing 1 changed file with 6 additions and 17 deletions.
23 changes: 6 additions & 17 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 8bd3f64

Please sign in to comment.