Skip to content

Merge pull request #31 from mah0x211/remove-unnecessary-commands #75

Merge pull request #31 from mah0x211/remove-unnecessary-commands

Merge pull request #31 from mah0x211/remove-unnecessary-commands #75

Workflow file for this run

name: Test
on:
push:
branches:
- '**'
paths-ignore:
- '**.md'
- 'LICENSE'
jobs:
test:
strategy:
matrix:
go-version: [1.20.x]
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
# -
# name: Install APT Packages
# run: |
# sudo apt update
# sudo apt-get -V install -y make gcc
- name: Install Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v2
- name: Test
run: make test
- name: Codecov
uses: codecov/codecov-action@v3