[U] bump version to 1.5.0a3 for testing (pypi testing only!) #653
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: Shellcheck | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
workflow_dispatch: | |
jobs: | |
# Shellcheck | |
check: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install shellcheck | |
run: sudo apt-get update && sudo apt-get install -y shellcheck | |
- name: Run shellcheck | |
run: | | |
shellcheck -V | |
shellcheck neofetch | |
./neofetch |