Skip to content

Commit

Permalink
Run pytest on github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
lbonn committed Feb 5, 2024
1 parent 5a42ce1 commit 4fa6a95
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Lint
description: Formatting and static analysis
name: Test
description: Formatting, static analysis and tests

runs:
using: composite
Expand All @@ -13,3 +13,6 @@ runs:
- id: flake8
shell: bash
run: flake8 i3_quickterm
- id: pytest
shell: bash
run: pytest -vv
4 changes: 2 additions & 2 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ on:
pull_request:

jobs:
lint:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: ./.github/actions/lint
- uses: ./.github/actions/test

0 comments on commit 4fa6a95

Please sign in to comment.