release version 1.1.1 #103
Workflow file for this run
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
#------------------------------------------------------------------------------- | |
# Copyright 2020 Dominik Salvet | |
# https://github.com/dominiksalvet/nconv | |
#------------------------------------------------------------------------------- | |
name: CI | |
on: [push, pull_request] | |
jobs: | |
Analysis: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout commit | |
uses: actions/checkout@v2 | |
- name: Check shellcheck | |
run: shellcheck --version | |
- name: Check source files | |
run: shellcheck src/nconv | |
- name: Check install files | |
run: shellcheck .install/* |