Skip to content

Refactor

Refactor #24

Workflow file for this run

name: ci
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.19
- name: Build
run: go build -v ./...
- name: Install
run: go install -v
- name: Show version
run: apple-dictionary-parser version
- name: Test
run: go test -v ./...