Skip to content

Commit

Permalink
Update CI workflows (#244)
Browse files Browse the repository at this point in the history
  • Loading branch information
ludeeus committed May 14, 2024
1 parent f9e7bd4 commit 9f4c279
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 31 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: CI

on:
push:
branches:
- master
pull_request:
branches:
- master

jobs:
tox:
runs-on: ubuntu-latest
name: Tox
strategy:
fail-fast: false
matrix:
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"

steps:
- uses: actions/checkout@v4.1.4

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

- name: Install tox
run: python3 -m pip install tox

- name: Run Tox
run: tox
31 changes: 0 additions & 31 deletions .github/workflows/test.yml

This file was deleted.

0 comments on commit 9f4c279

Please sign in to comment.