Skip to content

update header in README.md #211

update header in README.md

update header in README.md #211

Workflow file for this run

name: ci
on: [ push, workflow_dispatch ]
jobs:
cibuild:
name: cibuild
runs-on: ubuntu-20.04
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v3.3.0
- run: script/bootstrap
- run: script/generate --check
- run: script/lint
test:
name: test
strategy:
fail-fast: false
matrix:
os:
- ubuntu-20.04
- ubuntu-22.04
- windows-2019
- windows-2022
- macos-11
runs-on: ${{ matrix.os }}
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v3.3.0
- run: script/bootstrap
- run: script/test
- run: script/test -long