Skip to content

Commit

Permalink
Update testing workflow
Browse files Browse the repository at this point in the history
Update: 1. Renaming the workflow, 2. Add trigger on manual start, 3. Add Python 3.12 version to be tested on, 4. Update the `setup-python` action version (4 -> 5)
  • Loading branch information
vojtechpavlu committed Dec 26, 2023
1 parent 105b471 commit e49bb48
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,22 @@
name: Python package
name: Run the tests

on: [push]
on:
push:
workflow_dispatch:

jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11"]
python-version: ["3.11", "3.12"]

steps:
- uses: actions/checkout@v3

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

Expand Down

0 comments on commit e49bb48

Please sign in to comment.