Skip to content

Commit

Permalink
changed devtest workflow trigger.
Browse files Browse the repository at this point in the history
  • Loading branch information
TimothyStiles committed Aug 18, 2023
1 parent dcdfbb0 commit 4182c57
Showing 1 changed file with 23 additions and 7 deletions.
30 changes: 23 additions & 7 deletions .github/workflows/devtest.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,23 @@
- name: Pre-build image and run make ci-build in dev container
uses: devcontainers/[email protected]
with:
imageName: ghcr.io/bebop/ark-devcontainer
cacheFrom: ghcr.io/bebop/ark-devcontainer
push: always
runCmd: go test -v ./...
on:
push:
tags:
- v*
branches:
- main
pull_request:
name: Test
jobs:
test:
strategy:
matrix:
go-version: [1.18.x]
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Pre-build image and run make ci-build in dev container
uses: devcontainers/[email protected]
with:
imageName: ghcr.io/bebop/ark-devcontainer
cacheFrom: ghcr.io/bebop/ark-devcontainer
push: always
runCmd: go test -v ./...

0 comments on commit 4182c57

Please sign in to comment.