Skip to content

docs: Improve the Introduction chapter #12016

docs: Improve the Introduction chapter

docs: Improve the Introduction chapter #12016

Workflow file for this run

name: Test
on:
pull_request:
push:
paths-ignore:
- '**.md'
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.4.0
- uses: technote-space/get-diff-action@v6.1.2
with:
PATTERNS: |
**/*.go
**/*.plush
go.mod
go.sum
**/testdata/**
- uses: actions/setup-go@v4
if: env.GIT_DIFF
with:
go-version: '1.21'
cache: true
cache-dependency-path: go.sum
- run: ./scripts/test-coverage
if: env.GIT_DIFF
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3.1.1
if: env.GIT_DIFF
with:
file: ./coverage.txt
fail_ci_if_error: true
verbose: true