From dc8cb5c042bc0732c76d170a0f2d2f0f7e9be0b8 Mon Sep 17 00:00:00 2001 From: Liam Mulhall Date: Wed, 15 May 2024 12:10:40 -0700 Subject: [PATCH] Make all names lowercase To conform to OpenSSF badge. Related to: https://github.com/ClinGen/stanford-affils/issues/19 https://github.com/ClinGen/stanford-affils/issues/20 --- .github/workflows/check.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 6343d50..24e89da 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -1,4 +1,4 @@ -name: Code Checks +name: continuous integration on: [push, pull_request] permissions: contents: read @@ -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