Skip to content

Commit 35fead0

Browse files
committed
WIP rename changelog action YAML. Try adding black linting workflow.
1 parent 9b08ae6 commit 35fead0

File tree

2 files changed

+23
-1
lines changed

2 files changed

+23
-1
lines changed

.github/workflows/main.yml renamed to .github/workflows/create-release-changelog.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: 'CI'
1+
name: 'Create release and changelog'
22
on:
33
push:
44
tags:

.github/workflows/lint-black.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: 'Run black linting'
2+
3+
on:
4+
# Trigger the workflow on push or pull request,
5+
# but only for the main branch
6+
push:
7+
# branches:
8+
# - main
9+
# pull_request:
10+
# branches:
11+
# - main
12+
13+
jobs:
14+
PythonLinting:
15+
name: Python linting
16+
runs-on: ubuntu-latest
17+
steps:
18+
- uses: actions/checkout@master
19+
- name: Black Python linting
20+
uses: lgeiger/black-action@master
21+
with:
22+
args: . --check

0 commit comments

Comments
 (0)