Skip to content

add support for marshal/unmarshal gopkg.in/yaml marshaler #66

add support for marshal/unmarshal gopkg.in/yaml marshaler

add support for marshal/unmarshal gopkg.in/yaml marshaler #66

Workflow file for this run

name: CI
on:
push:
branches:
- master
- main
pull_request:
branches:
- master
- main
jobs:
test:
name: test
strategy:
matrix:
go-version:
- 1.19.x
- 1.20.x
os: [ ubuntu-latest ]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@master
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
cache: true # caching and restoring go modules and build outputs
- run: go env
- name: Install deps
run: go mod download
- name: Start containers
run: docker-compose up -d --build
- name: Test
run: make test
- name: Stop containers
if: always()
run: docker-compose down