Skip to content

Fix status badge stuck on "Passing", hiding CI failures #10

Fix status badge stuck on "Passing", hiding CI failures

Fix status badge stuck on "Passing", hiding CI failures #10

Workflow file for this run

name: Make
on:
push:
pull_request:
branches: [main]
jobs:

Check failure on line 8 in .github/workflows/make.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/make.yml

Invalid workflow file

You have an error in your yaml syntax on line 8
build:
strategy:
matrix:
go-version: [1.21.x]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Check Out code
uses: actions/checkout@v3
- name: Make
run: ./make.sh
- name: Configure Git
run: |
git config --global user.name 'github-actions[bot]'
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
- name: Commit and Push documentation
run: |
git add README.md goat.svg trees.mid-blue.svg
git commit -m 'Commit Github-generated documentation files'
git push