docs: update README with corrected Docker pull badge and add one-clic… #165
This file contains hidden or 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: Test Modules | |
| on: | |
| pull_request: | |
| branches: | |
| - '*' | |
| push: | |
| branches: | |
| - 'dev' | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout codebase | |
| uses: actions/checkout@v4 | |
| - name: Set up Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: '1.25.7' | |
| check-latest: true | |
| - name: Get project dependencies | |
| run: make deps | |
| - name: Install xray-core | |
| run: make install_xray | |
| - name: Create certificate | |
| run: | | |
| mkdir certs | |
| make generate_server_cert | |
| make generate_client_cert | |
| - name: Run tests | |
| run: make test |