Skip to content

Commit

Permalink
build: Add testing on ubuntu 22.04 and 24.04
Browse files Browse the repository at this point in the history
  • Loading branch information
feanil committed Oct 2, 2024
1 parent 1d4c0d1 commit 3a3bf93
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,19 @@ on:
jobs:
codejail_ci:
name: tests
runs-on: ubuntu-20.04
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- python_version: '3.11'
ubuntu_version: '20.04'
os: "ubuntu-20.04"
- python_version: '3.11'
ubuntu_version: '22.04'
os: "ubuntu-22.04"
- python_version: '3.11'
ubuntu_version: '24.04'
os: "ubuntu-24.04"

steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit 3a3bf93

Please sign in to comment.