Skip to content

ci: upgrade build runner image, upx, and github action version #429

ci: upgrade build runner image, upx, and github action version

ci: upgrade build runner image, upx, and github action version #429

Workflow file for this run

name: test
on: [push, pull_request]
jobs:
test:
strategy:
matrix:
go-version: [1.18.x]
platform: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.platform }}
env:
TERM: xterm-256color
steps:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v4
- name: Test
run: go run github.com/onsi/ginkgo/ginkgo@v1.16.5 -skip="GetQuotes Response" -cover ./...
coverage:
runs-on: ubuntu-latest
steps:
- name: Install Go
if: success()
uses: actions/setup-go@v5
with:
go-version: 1.18.x
- name: Checkout code
uses: actions/checkout@v4
- name: Generate coverage
run: go run github.com/onsi/ginkgo/ginkgo@v1.16.5 -skip="GetQuotes Response" -cover -outputdir=./ -coverprofile=coverage.out ./...
- name: Coveralls
uses: coverallsapp/github-action@v2
with:
file: ./coverage.out
format: golang