Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: Optable/match
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.4.0
Choose a base ref
...
head repository: Optable/match
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
  • 3 commits
  • 3 files changed
  • 1 contributor

Commits on Oct 24, 2024

  1. Copy the full SHA
    a73b474 View commit details
  2. Copy the full SHA
    03ab782 View commit details
  3. Copy the full SHA
    3e9b844 View commit details
Showing with 26 additions and 28 deletions.
  1. +0 −27 .circleci/config.yml
  2. +25 −0 .github/workflows/match-ci.yml
  3. +1 −1 README.md
27 changes: 0 additions & 27 deletions .circleci/config.yml

This file was deleted.

25 changes: 25 additions & 0 deletions .github/workflows/match-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: match CI

on:
pull_request:
push:
branches:
- main

env:
GOPATH: ${{ github.workspace }}

jobs:
test:
runs-on: ubuntu-24.04
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: '${{ env.GOPATH }}/go.mod'
- name: Install dependencies
run: go get ./...
- name: Run tests
run: go test -v ./...
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# match
[![CircleCI](https://circleci.com/gh/Optable/match/tree/main.svg?style=svg)](https://circleci.com/gh/Optable/match/tree/main)
[![match CI](https://github.com/Optable/match/actions/workflows/match-ci.yml/badge.svg?branch=main&event=push)](https://github.com/Optable/match/actions/workflows/match-ci.yml)
[![Go Report Card](https://goreportcard.com/badge/github.com/optable/match)](https://goreportcard.com/report/github.com/optable/match)
[![GoDoc](https://godoc.org/github.com/optable/match?status.svg)](https://godoc.org/github.com/optable/match)