test-concordia #101
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: test-concordia | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- '.github/actions/install-concordia/action.yml' | |
- '.github/workflows/test-concordia.yml' | |
- '.pylintrc' | |
- 'concordia/**' | |
- 'pyproject.toml' | |
- 'setup.py' | |
pull_request: | |
branches: | |
- main | |
paths: | |
- '.github/actions/install-concordia/action.yml' | |
- '.github/workflows/test-concordia.yml' | |
- '.pylintrc' | |
- 'concordia/**' | |
- 'pyproject.toml' | |
- 'setup.py' | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }} | |
cancel-in-progress: true | |
permissions: read-all | |
jobs: | |
preinstall-concordia: | |
name: Preinstall Concordia | |
runs-on: ubuntu.latest | |
timeout-minutes: 30 | |
steps: | |
# - name: Checkout Concordia | |
# uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 | |
# - name: Install Concordia | |
# uses: ./.github/actions/install-concordia | |
- run: exit 0 | |
test-concordia: | |
name: Test Concordia | |
needs: preinstall-concordia | |
runs-on: ubuntu.latest | |
timeout-minutes: 30 | |
steps: | |
# - name: Checkout Concordia | |
# uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 | |
# - name: Install Concordia | |
# uses: ./.github/actions/install-concordia | |
# - name: Typecheck Concordia | |
# run: pytest concordia | |
- run: exit 0 | |
pytype-concordia: | |
name: Typecheck Concordia | |
needs: preinstall-concordia | |
runs-on: ubuntu.latest | |
timeout-minutes: 30 | |
steps: | |
# - name: Checkout Concordia | |
# uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 | |
# - name: Install Concordia | |
# uses: ./.github/actions/install-concordia | |
# - name: Typecheck Concordia | |
# run: pytype concordia | |
- run: exit 1 | |
pylint-concordia: | |
name: Lint Concordia | |
needs: preinstall-concordia | |
runs-on: ubuntu.latest | |
timeout-minutes: 30 | |
steps: | |
# - name: Checkout Concordia | |
# uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 | |
# - name: Install Concordia | |
# uses: ./.github/actions/install-concordia | |
# - name: Lint Concordia | |
# run: pylint --errors-only concordia | |
- run: exit 1 |