Skip to content

Commit 365468a

Browse files
adjusted workflows
1 parent 1caf69f commit 365468a

File tree

7 files changed

+49
-19
lines changed

7 files changed

+49
-19
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
---
22
name: Bug report
33
about: Create a report to help us improve
4-
title: ''
5-
labels: ''
6-
assignees: ''
7-
4+
title: ""
5+
labels: ""
6+
assignees: ""
87
---
98

109
**Describe the bug**
1110
A clear and concise description of what the bug is.
1211

1312
**To Reproduce**
1413
Steps to reproduce the behavior:
14+
1515
1. Go to '...'
1616
2. Click on '....'
1717
3. Scroll down to '....'
@@ -24,15 +24,17 @@ A clear and concise description of what you expected to happen.
2424
If applicable, add screenshots to help explain your problem.
2525

2626
**Desktop (please complete the following information):**
27-
- OS: [e.g. iOS]
28-
- Browser [e.g. chrome, safari]
29-
- Version [e.g. 22]
27+
28+
- OS: [e.g. iOS]
29+
- Browser [e.g. chrome, safari]
30+
- Version [e.g. 22]
3031

3132
**Smartphone (please complete the following information):**
32-
- Device: [e.g. iPhone6]
33-
- OS: [e.g. iOS8.1]
34-
- Browser [e.g. stock browser, safari]
35-
- Version [e.g. 22]
33+
34+
- Device: [e.g. iPhone6]
35+
- OS: [e.g. iOS8.1]
36+
- Browser [e.g. stock browser, safari]
37+
- Version [e.g. 22]
3638

3739
**Additional context**
3840
Add any other context about the problem here.

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
---
22
name: Feature request
33
about: Suggest an idea for this project
4-
title: ''
5-
labels: ''
6-
assignees: ''
7-
4+
title: ""
5+
labels: ""
6+
assignees: ""
87
---
98

109
**Is your feature request related to a problem? Please describe.**

.github/workflows/codecov.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
fail-fast: false
2121
max-parallel: 1
2222
matrix:
23-
os: [ubuntu-latest] #, macos-latest, windows-latest]
23+
os: [ubuntu-latest]
2424
python-version: ["3.11"]
2525

2626
env:

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,4 +74,4 @@ jobs:
7474
- name: Perform CodeQL Analysis
7575
uses: github/codeql-action/analyze@v2
7676
with:
77-
category: "/language:${{matrix.language}}"
77+
category: "/language:${{ matrix.language }}"

.github/workflows/pre-commit.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Pre-Commit
2+
3+
on:
4+
push:
5+
branches: ["*", "!master"]
6+
pull_request:
7+
branches: ["*"]
8+
9+
concurrency:
10+
group: pre-commit-${{ github.ref }}
11+
cancel-in-progress: true
12+
13+
jobs:
14+
pre-commit:
15+
name: Pre-Commit
16+
runs-on: ubuntu-latest
17+
steps:
18+
- name: Checkout
19+
uses: actions/checkout@v3
20+
- uses: pre-commit/[email protected]

.github/workflows/python-package.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,22 @@ concurrency:
1414
cancel-in-progress: true
1515

1616
jobs:
17+
pre-commit:
18+
name: Pre-Commit
19+
runs-on: ubuntu-latest
20+
steps:
21+
- name: Checkout
22+
uses: actions/checkout@v3
23+
- uses: pre-commit/[email protected]
24+
1725
build:
26+
needs: [pre-commit]
27+
name: Build
1828
runs-on: ubuntu-latest
1929
strategy:
2030
fail-fast: false
2131
matrix:
2232
python-version: ["3.8", "3.9", "3.10", "3.11"]
23-
2433
steps:
2534
- uses: actions/checkout@v3
2635
- name: Set up Python ${{ matrix.python-version }}

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,4 +136,4 @@ del*.py
136136
*.zip
137137

138138
*.egg-info/
139-
conda.stuff/
139+
conda.stuff/

0 commit comments

Comments
 (0)