add installation instructions to landing page of docs site #545
Workflow file for this run
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: Build | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
lfs: 'true' | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: 'go.mod' | |
- name: Install dependencies | |
run: | | |
go install github.com/mickael-menu/tesh@latest | |
- name: Build | |
run: make build | |
- name: Test | |
run: make test | |
- name: Tesh | |
# See https://github.com/actions/runner/issues/241#issuecomment-924327172 | |
shell: script --return --quiet --command "bash {0}" | |
run: make tesh | |