Skip to content

feat: add missing methods, add Rakefile #5

feat: add missing methods, add Rakefile

feat: add missing methods, add Rakefile #5

Workflow file for this run

name: Matrix Test
on:
workflow_dispatch:
pull_request:
push:
branches:
- master
- dev
concurrency:
group: ${{ github.sha }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
name: Golang ${{ matrix.go }}
strategy:
matrix:
go:
- "1.25"
- "1.18.0"
steps:
- uses: actions/checkout@v5
- name: Set up Golang
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
# - name: Install Rake
# run: gem install rake
- name: Test option
run: rake test_option
- name: Test result
run: rake test_result