Skip to content

chore: use a custom presubmit_tests.sh script #3854

chore: use a custom presubmit_tests.sh script

chore: use a custom presubmit_tests.sh script #3854

Workflow file for this run

name: Func Unit Test
on: [pull_request]
jobs:
test:
name: Unit Test
strategy:
matrix:
go: [1.20.x]
java: [17]
os: ["ubuntu-latest", "windows-latest", "macos-latest"]
runs-on: ${{ matrix.os }}
steps:
- name: Install Bash 4 on Mac
if: matrix.os == 'macos-latest'
run: |
/bin/bash -c "$(curl -fsSL https://github.com/raw/Homebrew/install/HEAD/install.sh)"
brew update
brew install bash
brew install gnu-sed
echo "/usr/local/bin" >> $GITHUB_PATH
echo "$(brew --prefix)/opt/gnu-sed/libexec/gnubin" >> $GITHUB_PATH
- run: git config --global core.autocrlf false
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}
- uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- name: Core Unit Tests
run: make test
- name: Template Unit Tests
run: make test-templates
- uses: codecov/codecov-action@v3
with:
files: ./coverage.txt
flags: unit-tests-${{ matrix.os }}