Skip to content

Commit

Permalink
give github actions better names
Browse files Browse the repository at this point in the history
  • Loading branch information
sezelt committed Aug 23, 2023
1 parent dfc53eb commit dd1fe21
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/black.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: Check formatting
name: Check code style

on: [push, pull_request]
on:
push:
branches: [ "dev" ]
pull_request:
branches: [ "dev" ]

jobs:
lint:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-flake.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions

name: Python application
name: Check module can be imported

on:
push:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linter.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: flake8 Lint
name: Check for errors with flake8

on:
push:
Expand Down

0 comments on commit dd1fe21

Please sign in to comment.