Merge pull request #152 from shipwright-io/dependabot/go_modules/gith… #328
This file contains hidden or 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: Test | |
on: | |
push: | |
tags-ignore: | |
- "**" | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
unit: | |
runs-on: ubuntu-latest | |
name: unit | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- uses: ./.github/actions/setup | |
- name: test-unit | |
run: make test-unit | |
integration: | |
runs-on: ubuntu-latest | |
name: integration | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- uses: ./.github/actions/setup | |
- name: test-integration | |
run: make test-integration | |
# test-e2e: | |
# name: test-e2e | |
# runs-on: ubuntu-latest | |
# steps: | |
# - name: Checkout Code | |
# uses: actions/checkout@v4 | |
# - uses: ./.github/actions/setup | |
# - uses: ./.github/actions/shipwright | |
# - name: test-e2e | |
# run: make test-e2e |