Skip to content
This repository has been archived by the owner on Dec 25, 2024. It is now read-only.

Simplify CI and make it match veil. #12

Merged
merged 1 commit into from
Nov 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 0 additions & 33 deletions .github/workflows/go.yml

This file was deleted.

22 changes: 22 additions & 0 deletions .github/workflows/veil-proxy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go

name: veil-proxy

on:
push:
pull_request:
branches: [master]

jobs:
Test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: 1.23
- name: Build
run: make
- name: Test
run: go test -cover -race ./...