Skip to content

Commit

Permalink
test workflow test
Browse files Browse the repository at this point in the history
  • Loading branch information
tulga-rdn committed Feb 6, 2025
1 parent 37333fd commit beed3cc
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ on:
jobs:
lint:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Set up Python
Expand All @@ -15,4 +14,4 @@ jobs:
python-version: '3.12'
- run: pip install tox
- name: Lint the code
run: tox -e lint
run: tox -e lint
32 changes: 32 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Tests

on:
push:
branches: [main]
pull_request:

jobs:
test:
strategy:
matrix:
include:
- os: ubuntu-22.04
python-version: 3.9
- os: ubuntu-22.04
python-version: 3.12
- os: macos-14
python-version: 3.12
- os: windows-2022
python-version: 3.12
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- run: pip install tox
- name: Test the code
run: tox -e test

0 comments on commit beed3cc

Please sign in to comment.