add gh action workflow to mirror circle ci #2
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: Test and Generate Docs | |
on: pull_request | |
jobs: | |
go-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 | |
- name: Set up Go | |
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed | |
with: | |
go-version-file: go.mod | |
- name: Set up Python | |
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b | |
with: | |
python-version: '3.x' | |
- name: Install pre-commit | |
run: | | |
python -m pip install --upgrade pip | |
pip install pre-commit | |
- name: Run pre-commit hooks | |
run: pre-commit run --all-files | |
- name: Run tests with gotestsum | |
run: | | |
mkdir -p ${{ github.workspace }}/artifacts | |
mkdir -p ${{ github.workspace }}/reports | |
GONFALON_MODE=test \ | |
gotestsum --packages="./..." \ | |
--junitfile ${{ github.workspace }}/reports/go-test_go_tests.xml \ | |
--jsonfile ${{ github.workspace }}/artifacts/go-test_go_tests.json \ | |
--rerun-fails=2 \ | |
--rerun-fails-max-failures=10 \ | |
--rerun-fails-report ${{ github.workspace }}/artifacts/rerun_tests_go_tests.txt \ | |
-- -p=1 |