what can we even build on?

This commit is contained in:
Scott Blum 2022-10-31 11:14:23 -04:00
parent 32029c0c34
commit 4b84da5681
1 changed files with 8 additions and 7 deletions

View File

@ -1,11 +1,5 @@
shared_configs: shared_configs:
simple_job_steps: &simple_job_steps simple_job_steps: &simple_job_steps
- checkout
- run:
name: Run tests
command: |
make deps test
full_job_steps: &full_job_steps
- checkout - checkout
- run: - run:
name: Run tests name: Run tests
@ -25,7 +19,7 @@ jobs:
working_directory: ~/repo working_directory: ~/repo
docker: docker:
- image: cimg/go:1.16 - image: cimg/go:1.16
steps: *full_job_steps steps: *simple_job_steps
build-1-17: build-1-17:
working_directory: ~/repo working_directory: ~/repo
@ -39,6 +33,12 @@ jobs:
- image: cimg/go:1.18 - image: cimg/go:1.18
steps: *simple_job_steps steps: *simple_job_steps
build-1-19:
working_directory: ~/repo
docker:
- image: cimg/go:1.19
steps: *simple_job_steps
workflows: workflows:
pr-build-test: pr-build-test:
jobs: jobs:
@ -46,3 +46,4 @@ workflows:
- build-1-16 - build-1-16
- build-1-17 - build-1-17
- build-1-18 - build-1-18
- build-1-19