mirror of
https://github.com/wahyd4/github-action-spike.git
synced 2026-08-09 05:06:43 +10:00
15 lines
188 B
YAML
15 lines
188 B
YAML
name: Docker
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Run compose
|
|
run: docker-compose run spike go test ./...
|