Skip to content
This repository has been archived by the owner on Sep 17, 2024. It is now read-only.

update chapters on homepage #130

update chapters on homepage

update chapters on homepage #130

Workflow file for this run

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