feat: Add separate CI workflows for Go, Python, and shell tests; remove legacy test workflow
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
on:
|
||||
push:
|
||||
paths:
|
||||
- 'src/simple-ca/**'
|
||||
|
||||
jobs:
|
||||
test-go:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v6
|
||||
|
||||
- name: Set up Go
|
||||
uses: actions/setup-go@v5
|
||||
with:
|
||||
go-version: stable
|
||||
|
||||
- name: Run Go tests
|
||||
run: go test -v ./...
|
||||
working-directory: src/simple-ca
|
||||
Reference in New Issue
Block a user