Files
tablizer/.circleci/config.yml

39 lines
589 B
YAML
Raw Normal View History

2022-09-30 19:24:00 +02:00
---
version: 2.1
jobs:
compile:
docker:
- image: cimg/go:1.18
steps:
- checkout
- run: make
test:
parameters:
go_version:
type: string
run_test:
type: boolean
default: true
docker:
2022-09-30 19:45:39 +02:00
- image: cimg/go:<< parameters.go_version >>
2022-09-30 19:24:00 +02:00
steps:
- checkout
- run: make test
workflows:
version: 2
2022-09-30 22:28:18 +02:00
unit-test:
2022-09-30 19:24:00 +02:00
jobs:
- compile
- test:
2022-09-30 22:28:18 +02:00
name: testing
2022-09-30 19:47:27 +02:00
matrix:
parameters:
go_version:
- "1.16"
- "1.17"
- "1.18"
2022-09-30 22:28:18 +02:00
- "1.19"