Skip to content

Remove uninstall-lj and uninstall-rocks commands #74

Remove uninstall-lj and uninstall-rocks commands

Remove uninstall-lj and uninstall-rocks commands #74

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