mirror of
https://github.com/Bhupesh-V/ugit.git
synced 2026-09-10 15:36:25 -04:00
22 lines
509 B
YAML
22 lines
509 B
YAML
name: build
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
jobs:
|
|
linux-test:
|
|
name: Linux Test
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@master
|
|
- name: ShellCheck Test
|
|
uses: ludeeus/action-shellcheck@master
|
|
- name: Syntax Testing
|
|
# -n : read commands but do not execute them.
|
|
# This may be used to check a shell script for syntax errors (ignored by interactive shells).
|
|
run : |
|
|
bash -n ugit
|