Skip to content

docs: update README with corrected Docker pull badge and add one-clic… #165

docs: update README with corrected Docker pull badge and add one-clic…

docs: update README with corrected Docker pull badge and add one-clic… #165

Workflow file for this run

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