Browse Source

Fix workflows

tags/v0.10.0
Jérôme Deuchnord 3 years ago
parent
commit
d403d8c0c1
4 changed files with 8 additions and 9 deletions
  1. +2
    -2
      .github/workflows/codeql-analysis.yml
  2. +2
    -2
      .github/workflows/commitlint.yml
  3. +2
    -2
      .github/workflows/pylint.yml
  4. +2
    -3
      .github/workflows/unit-tests.yml

+ 2
- 2
.github/workflows/codeql-analysis.yml View File

@@ -7,9 +7,9 @@ name: "CodeQL"

on:
push:
branches: [master, features]
branches: [main, features]
pull_request:
branches: [master, features]
branches: [main, features]
schedule:
- cron: '0 8 * * 0'



+ 2
- 2
.github/workflows/commitlint.yml View File

@@ -2,9 +2,9 @@ name: Commit lint

on:
push:
branches: [master, features]
branches: [main, features]
pull_request:
branches: [master, features]
branches: [main, features]

jobs:
commitlint:


+ 2
- 2
.github/workflows/pylint.yml View File

@@ -2,9 +2,9 @@ name: Python Lint

on:
push:
branches: [master, features]
branches: [main, features]
pull_request:
branches: [master, features]
branches: [main, features]

jobs:
pylint:


+ 2
- 3
.github/workflows/unit-tests.yml View File

@@ -2,9 +2,9 @@ name: Unit tests

on:
push:
branches: [master, features]
branches: [main, features]
pull_request:
branches: [master, features]
branches: [main, features]

jobs:
legacy-unit-tests:
@@ -55,7 +55,6 @@ jobs:
- '3.7'
- '3.8'
- '3.9'
- '3.10'

name: Unit tests (Python ${{ matrix.python-version }} on ${{ matrix.os }})
steps:


Loading…
Cancel
Save