release: bump version to 2.2.3 #85
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: run shellcheck and shfmt | |
on: | |
push: | |
paths: | |
- 'tessen' | |
pull_request: | |
paths: | |
- 'tessen' | |
jobs: | |
lint: | |
name: use shellcheck to lint tessen | |
runs-on: ubuntu-latest | |
container: | |
image: koalaman/shellcheck-alpine:stable | |
steps: | |
- name: checkout tessen for shellcheck | |
uses: actions/checkout@v3 | |
- name: run shellcheck | |
run: shellcheck tessen | |
format: | |
name: use shfmt to check tessen code format | |
runs-on: ubuntu-latest | |
container: | |
image: mvdan/shfmt:v3-alpine | |
steps: | |
- name: checkout tessen for shfmt | |
uses: actions/checkout@v3 | |
- name: run shfmt | |
run: shfmt -d -s -i 2 -bn -ci -sr tessen |