add one more check to unit test od ZigZagIterator #2854
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Python CI | |
on: | |
push: | |
branches: [ "*" ] | |
tags-ignore: [ "v*" ] | |
jobs: | |
style: | |
uses: ./.github/workflows/style.yml | |
test: | |
needs: [ style ] | |
uses: ./.github/workflows/test.yml | |
license: | |
needs: [ style ] | |
uses: ./.github/workflows/license.yml | |
coverage: | |
needs: [ style ] | |
uses: ./.github/workflows/coverage.yml | |
secrets: | |
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} | |
CODACY_PROJECT_TOKEN: ${{ secrets.CODACY_PROJECT_TOKEN }} |