Skip to content

Commit

Permalink
Added matrix 311 and 312 to action (#8)
Browse files Browse the repository at this point in the history
* Added matrix 311 and 312 to action

* Stopped duplicate branch testing

* Fixed action matrix
  • Loading branch information
howroyd authored Feb 13, 2024
1 parent e10dc73 commit aa3274a
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 7 deletions.
19 changes: 13 additions & 6 deletions .github/workflows/python-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@ name: Python application

on:
push:
branches:
- '*'
branches: [ "main" ]
pull_request:
branches: [ "main" ]

Expand All @@ -16,14 +15,18 @@ permissions:
jobs:
linting:
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
python_version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Set up Python 3.11
- name: Set up Python ${{ matrix.python_version }}
uses: actions/setup-python@v5
with:
python-version: "3.11"
python-version: ${{ matrix.python_version }}
- name: Install dependencies
run: |
git submodule update --init --recursive
Expand All @@ -39,14 +42,18 @@ jobs:
pytest:
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
python_version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Set up Python 3.11
- name: Set up Python ${{ matrix.python_version }}
uses: actions/setup-python@v5
with:
python-version: "3.11"
python-version: ${{ matrix.python_version }}
- name: Install dependencies
run: |
git submodule update --init --recursive
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "twitchirc_drgreengiant"
version = "2.0.0"
version = "2.1.0"
authors = [{ name = "Simon Howroyd", email = "[email protected]" }]
description = "A simple receive only Twitch IRC client"
keywords = ["twitch", "irc", "chat"]
Expand Down

0 comments on commit aa3274a

Please sign in to comment.