Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
otaviof committed Oct 17, 2022
1 parent d99ae5e commit b058cff
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/actions/setup/action.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
name: setup
description: set up the stage for building and testing
runs:
using: composite
steps:
- uses: actions/setup-go@v3
with:
go-version: 1.19.x
20 changes: 20 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: Unit and E2E Tests

on:
push:
tags-ignore:
- '**'
branches:
- main
pull_request:
branches:
- main

jobs:
unit-test:
name: unit-test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/setup

0 comments on commit b058cff

Please sign in to comment.