Skip to content

Commit

Permalink
Merge pull request #7 from overhangio/Muqadim/ci-worflows-update
Browse files Browse the repository at this point in the history
chore: update CI workflow with Python 3.12 and latest action versions
  • Loading branch information
Abdul-Muqadim-Arbisoft committed Apr 16, 2024
2 parents c0dbed6 + 4864f29 commit 3c5b1b4
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,15 @@ on:
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.12"]
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v2
- uses: actions/checkout@v4
- name: Set up ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: ${{ matrix.python-version }}
- name: Upgrade pip
run: python -m pip install --upgrade pip setuptools
- name: Install dependencies
Expand Down

0 comments on commit 3c5b1b4

Please sign in to comment.