This repository has been archived by the owner on Sep 17, 2024. It is now read-only.
chapters nav #136
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: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
static-check: | |
runs-on: ubuntu-latest | |
if: ${{ github.ref != 'refs/heads/main' }} | |
timeout-minutes: 10 | |
steps: | |
- name: Checkout source code | |
uses: actions/[email protected] | |
- name: Setup python | |
uses: actions/[email protected] | |
with: | |
python-version: '3.9' | |
- name: Setup node | |
uses: actions/[email protected] | |
with: | |
node-version-file: './client/.nvmrc' | |
- name: Install server | |
run: make install | |
- name: Install client | |
run: make install-client | |
- name: Cache pre-commit | |
uses: actions/[email protected] | |
with: | |
path: ~/.cache/pre-commit | |
key: pre-commit-3|${{ env.pythonLocation }}|${{ hashFiles('.pre-commit-config.yaml') }} | |
- name: Install pre-commit | |
run: pip3 install pre-commit | |
- name: Run check | |
run: pre-commit run --all-files --show-diff-on-failure --color always | |
- name: Run typecheck | |
run: make typecheck | |
build-and-run-tests: | |
runs-on: ubuntu-latest | |
if: | | |
always() && | |
(needs.static-check.result == 'success' || needs.static-check.result == 'skipped') | |
needs: static-check | |
timeout-minutes: 10 | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
steps: | |
- name: Checkout source code | |
uses: actions/[email protected] | |
- name: Setup python | |
uses: actions/[email protected] | |
with: | |
python-version: '3.9' | |
- name: Setup node | |
uses: actions/[email protected] | |
with: | |
node-version-file: './client/.nvmrc' | |
- name: Install server | |
run: make install | |
- name: Install client | |
run: make install-client | |
- name: Run server tests | |
run: make test-server | |
- name: Run client tests | |
run: make test-client-ci |