Skip to content

Commit b99c078

Browse files
voidstarvoidstar
authored andcommitted
Build and release.
1 parent be1ca56 commit b99c078

3 files changed

Lines changed: 28 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: ShellCheck CI
2+
3+
on:
4+
push:
5+
pull_request:
6+
7+
jobs:
8+
shellcheck:
9+
name: ShellCheck Lint
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- name: Checkout repository
14+
uses: actions/checkout@v4
15+
16+
- name: Install ShellCheck
17+
run: sudo apt-get update && sudo apt-get install -y shellcheck
18+
19+
- name: Run ShellCheck
20+
run: shellcheck $(find . -name '*.sh')
21+

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*.zip

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
![Build](https://github.com/huxley-barbee/optio/actions/workflows/ci.yml/badge.svg)
2+
![ShellCheck](https://img.shields.io/badge/lint-shellcheck-brightgreen)
3+
![License: MPL 2.0](https://img.shields.io/badge/license-MPL%202.0-blue)
4+
![Shell: Bash 3+](https://img.shields.io/badge/shell-bash%203%2B-blue)
5+
![Downloads](https://img.shields.io/github/downloads/huxley-barbee/optio/total)
6+
17
# Overview
28

39
Optio is a framework to create terminal menus in bash.

0 commit comments

Comments
 (0)