blob: 2312429056b7ca4d5a9a5739b0626672178b2831 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
name: Bidirectional Unicode scan
on: [pull_request, workflow_dispatch]
jobs:
build-linux:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Checkout submodules
run: git submodule update --init
- name: Scan for code points
run: ./ci/check-trojan-source.sh .
|