add tests for has_newline_at_end()
#102
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
name: check file encodings in PR | |
on: pull_request | |
jobs: | |
file-encoding: | |
name: file encoding check | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- name: run the checkout action | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: list all changed files | |
run: | | |
files=$(git diff --name-only origin/$GITHUB_BASE_REF...${{ github.sha }}) | |
IFS=$'\n'; files=($files); unset IFS; # split the string into an array | |
file --mime "${files[@]}" | |
- name: list all changed files with the wrong encoding | |
run: | | |
files=$(git diff --name-only origin/$GITHUB_BASE_REF...${{ github.sha }}) | |
IFS=$'\n'; files=($files); unset IFS; # split the string into an array | |
! file --mime "${files[@]}" | grep -v "charset=utf-8\|charset=us-ascii\|charset=binary\| (No such file or directory)$" |