Merge pull request #15 from syscode-labs/release-please--branches--main #169
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: Tests | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| tiny-smoke-assets: | |
| name: Validate tiny smoke assets | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Clone the code | |
| uses: actions/checkout@v6 | |
| - name: Verify tiny smoke example | |
| run: ./hack/verify-tiny-smoke.sh | |
| test: | |
| name: Run on Ubuntu | |
| runs-on: ubuntu-latest | |
| needs: tiny-smoke-assets | |
| steps: | |
| - name: Clone the code | |
| uses: actions/checkout@v6 | |
| - name: Setup Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version-file: go.mod | |
| - name: Running Tests | |
| run: | | |
| go mod tidy | |
| make test |