mirror of
https://github.com/Jintin/aliasme.git
synced 2026-05-08 16:57:32 -05:00
23 lines
392 B
YAML
23 lines
392 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches: [ master, main ]
|
|
pull_request:
|
|
branches: [ master, main ]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Install ShellCheck
|
|
run: sudo apt-get install -y shellcheck
|
|
|
|
- name: Run ShellCheck
|
|
run: shellcheck aliasme.sh test/*.sh
|
|
|
|
- name: Run Tests
|
|
run: make test
|