Skip to content

fix for https://developers.eveonline.com/blog/article/updates-for-equinox-developers-edition #17

fix for https://developers.eveonline.com/blog/article/updates-for-equinox-developers-edition

fix for https://developers.eveonline.com/blog/article/updates-for-equinox-developers-edition #17

Workflow file for this run

name: golang-test
on:
push:
tags:
- v*
branches:
- master
- main
pull_request:
permissions:
contents: read
jobs:
build-and-test:
name: build-and-test
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v3
with:
go-version: 1.19
- uses: actions/checkout@v3
- name: Setup
run: make setup
- name: Build
run: make build
- name: Test
run: make test
- name: Test Summary
uses: test-summary/action@v2
with:
paths: |
target/reports/go-test-report.xml
if: always()
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: latest