remove test step
Some checks are pending
Build and Deploy API Server / deploy (push) Blocked by required conditions
Build and Deploy API Server / build (push) Successful in 53s

This commit is contained in:
Farid Siddiqi 2025-12-23 18:55:02 -08:00
parent a386528707
commit 959acc33a8
2 changed files with 7 additions and 3 deletions

View File

@ -40,9 +40,10 @@ jobs:
- name: Download dependencies - name: Download dependencies
run: go mod download run: go mod download
- name: Run tests # takes too long, investigate why it takes so long
run: go test -v ./... # - name: Run tests
# run: go test -v ./...
- name: Build binary - name: Build binary
run: | run: |

View File

@ -372,6 +372,9 @@
listen 80; listen 80;
server_name {{ ansible_host }}; server_name {{ ansible_host }};
# Allow large artifact uploads
client_max_body_size 500M;
location / { location / {
proxy_pass http://127.0.0.1:{{ gitea_http_port }}; proxy_pass http://127.0.0.1:{{ gitea_http_port }};
proxy_set_header Host $host; proxy_set_header Host $host;