Skip to content

Commit

Permalink
refactor: testing + add go test
Browse files Browse the repository at this point in the history
  • Loading branch information
laurentsenta committed Jun 30, 2023
1 parent 9a67879 commit d773e05
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Test
name: Test Kubo (e2e)

on:
workflow_dispatch:
Expand Down
30 changes: 30 additions & 0 deletions .github/workflows/test-tooling.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Test Tooling

on:
workflow_dispatch:
push:
branches:
- main
pull_request:

jobs:
test:
runs-on: 'ubuntu-latest'
strategy:
fail-fast: false
defaults:
run:
shell: bash
steps:
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: 1.20.4
- uses: actions/checkout@v3
with:
path: 'gateway-conformance'
- uses: protocol/cache-go-action@v1
- name: Run the tests
shell: bash
run: |
go test ./tooling/...

0 comments on commit d773e05

Please sign in to comment.