Skip to content

Commit

Permalink
combine workflow and add testing with multiple version
Browse files Browse the repository at this point in the history
  • Loading branch information
bipinkrish committed Oct 18, 2024
1 parent b252627 commit 727820e
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 34 deletions.
Original file line number Diff line number Diff line change
@@ -1,26 +1,31 @@
name: Lint

name: Lint and Test

on:
push:
branches: [ master, main ]
branches: [master, main]
pull_request:
branches: [ master, main ]

branches: [master, main]

jobs:
test:
name: Lint
lint_and_test:
name: Lint and Test
runs-on: ubuntu-latest

strategy:
matrix:
python-version: [3.8, 3.10, 3.12]

steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.8'
python-version: ${{ matrix.python-version }}

- name: Install Requirements
run: pip install .[dev,mouthing,server]

- name: Lint Code
run: pylint signwriting

- name: Test Code
run: pytest signwriting
26 changes: 0 additions & 26 deletions .github/workflows/test.yaml

This file was deleted.

0 comments on commit 727820e

Please sign in to comment.