Skip to content

Commit

Permalink
Make all names lowercase
Browse files Browse the repository at this point in the history
To conform to OpenSSF badge.

Related to:
#19
#20
  • Loading branch information
liammulh committed May 15, 2024
1 parent 7f2b2d2 commit dc8cb5c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Code Checks
name: continuous integration
on: [push, pull_request]
permissions:
contents: read
Expand All @@ -11,13 +11,13 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dependencies
- name: install dependencies
run: pip install -r requirements.txt
- name: Format
run: invoke fmt
- name: Lint
- name: lint
run: invoke lint
- name: Check types
- name: check types
run: invoke types
- name: Run tests
- name: run tests
run: invoke test

0 comments on commit dc8cb5c

Please sign in to comment.