Browse Source

ci: remove Commitlint workflow (replaced by semantic-pull-request) (#25)

* ci: remove Commitlint workflow (replaced by semantic-pull-request)

* ci: fix doctests not running correctly on some OS and Python versions
tags/v1.0.0
Jérôme Deuchnord 2 years ago
committed by GitHub
parent
commit
a3c706dd71
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 23 deletions
  1. +0
    -21
      .github/workflows/commitlint.yml
  2. +2
    -2
      .github/workflows/tests.yml

+ 0
- 21
.github/workflows/commitlint.yml View File

@@ -1,21 +0,0 @@
name: Commit

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

jobs:
commitlint:
name: Message validation
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: wagoid/commitlint-github-action@v2
with:
helpURL: 'https://github.com/Kosmorro/kosmorro/blob/master/CONTRIBUTING.md#commiting'


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

@@ -108,8 +108,8 @@ jobs:
run: |
make coverage-doctests

- name: Run doc tests
if: ${{ matrix.os != 'ubuntu-20.04' && matrix.python_version != '3.9' }}
- name: Run doc tests (without coverage)
if: ${{ matrix.os != 'ubuntu-20.04' || matrix.python_version != '3.9' }}
run: |
make doctests



Loading…
Cancel
Save