Make Regions Organization Scoped (#101) #110
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Unikorn Merge | |
on: | |
push: | |
branches: | |
- main | |
tags-ignore: | |
- '*' | |
env: | |
GO_VERSION: 1.21.5 | |
jobs: | |
Coverage: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: ${{ env.GO_VERSION }} | |
cache: true | |
- name: Install Helm | |
uses: azure/setup-helm@v3 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Touch | |
run: make touch | |
- name: Unit Test | |
run: make test-unit | |
- name: Run Codecov | |
uses: codecov/codecov-action@v3 | |
env: | |
token: ${{ secrets.CODECOV_TOKEN }} |