Skip to content

Commit

Permalink
test on multiple python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
adamjakab committed May 6, 2024
1 parent bafd590 commit 6c72059
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/test_and_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,15 @@ jobs:
test_and_release:
name: Test and Release
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.10", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python
- name: Set up Python (${{ matrix.python-version }})
uses: actions/setup-python@v5
with:
python-version: "3.7"
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
[![Test and Release](https://github.com/adamjakab/BeetsPluginBpmAnalyser/actions/workflows/test_and_release.yml/badge.svg)](https://github.com/adamjakab/BeetsPluginBpmAnalyser/actions/workflows/test_and_release.yml)
[![PyPi](https://img.shields.io/pypi/v/beets-bpmanalyser.svg)](https://pypi.org/project/beets-bpmanalyser/)
[![MIT license](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE.txt)

Expand Down

0 comments on commit 6c72059

Please sign in to comment.