Skip to content

Merge pull request #341 from aaronkollasch/fix-cpu-info #414

Merge pull request #341 from aaronkollasch/fix-cpu-info

Merge pull request #341 from aaronkollasch/fix-cpu-info #414

Workflow file for this run

name: Check Syntax
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@master
- name: syntax-check
run: for i in $(ls); do echo $i; if [ ! -z $(bash -n $i) ]; then $(exit 1); fi; done
working-directory: scripts
shell: bash