diff options
Diffstat (limited to '.github/workflows/unicode-check.yml')
| -rw-r--r-- | .github/workflows/unicode-check.yml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.github/workflows/unicode-check.yml b/.github/workflows/unicode-check.yml new file mode 100644 index 0000000000..9cfd35ca12 --- /dev/null +++ b/.github/workflows/unicode-check.yml @@ -0,0 +1,17 @@ +name: Bidirectional Unicode scan +on: + push: + # Request manually from the Actions tab + workflow_dispatch: +jobs: + build-linux: + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v2 + + - name: Checkout submodules + run: git submodule update --init + + - name: Scan for code points + run: ./ci/check-trojan-source.sh |
