Skip to content

bump GitHub Actions #310

bump GitHub Actions

bump GitHub Actions #310

Workflow file for this run

name: Check ASCII
on:
- push
- pull_request
jobs:
check-ascii:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Check ASCII
run: |
find . -type f -name '*.java' | xargs file | grep -qv ASCII || exit 0 && exit 1