Skip to content

Update index.md

Update index.md #48

Workflow file for this run

name: test
on:
push:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: check
run: .scripts/check.sh > out 2>&1
- name: result
run: |
if [ -s out ]
then
cat out
exit 1
fi