Skip to content

Merge remote-tracking branch 'gitlab/master' #10

Merge remote-tracking branch 'gitlab/master'

Merge remote-tracking branch 'gitlab/master' #10

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2.3.4
- name: Check that everywhere there is a README
run: |
for f in `find . -type f -exec dirname {} \; | grep -v .git | sort -u`
do
cd $f
[[ -f README || -f README.org || -f README.md ]] || {
echo "$f does not have a README!"
exit 1
}
cd -
done