Skip to content

Commit

Permalink
ci: call fmt instead of lint
Browse files Browse the repository at this point in the history
  • Loading branch information
florianvazelle committed Dec 11, 2023
1 parent 7bf8dfc commit 6cc5a0f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,7 @@ jobs:
with:
python-version: ${{ matrix.python-version }}

- name: Run tests
run: just test
- run: just test

lint:
runs-on: ubuntu-20.04
Expand All @@ -34,5 +33,4 @@ jobs:
with:
python-version: "3.10"

- name: Run lint
run: just lint
- run: just fmt
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# `📑 greeter`

![Python Version](https://img.shields.io/badge/python-3.10%20%7C%203.11%20%7C%203.12-0a7bbc?logo=python&logoColor=white)
![Python Version](https://img.shields.io/badge/python-3.100%20|%203.110%20|%203.12-0a7bbc?logo=python&logoColor=white)
![license](https://img.shields.io/badge/license-MIT-green?logo=open-source-initiative&logoColor=white)
[![standard-readme compliant](https://img.shields.io/badge/readme-standard-brightgreen.svg?logo=readme&logoColor=white)](https://github.com/RichardLitt/standard-readme)

Expand Down
4 changes: 3 additions & 1 deletion tests/test_greeter.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
from greeter import greeter

def test_dummy():
print("Hello")
greeter("Hello")

0 comments on commit 6cc5a0f

Please sign in to comment.