diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b5d5fe3..cfb2286 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,5 +1,6 @@ name: Run lint & unit tests + on: push: branches: [ "main" ] @@ -8,6 +9,7 @@ on: jobs: build: + name: "Run unit tests" runs-on: ubuntu-latest @@ -22,4 +24,5 @@ jobs: make lint - name: Run unit tests - run: make test \ No newline at end of file + run: make test +