This repository has been archived by the owner on Dec 19, 2023. It is now read-only.
Pause/Resume tail #192
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: pull_request | |
name: Pull Request | |
jobs: | |
test: | |
name: Run tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go | |
uses: actions/[email protected] | |
with: | |
go-version: '~1.18' | |
- uses: actions/checkout@v2 | |
- name: Start up dependencies | |
run: docker-compose -f docker-compose.dev.yaml up -d redis | |
- name: Wait for dependencies to start up | |
uses: jakejarvis/wait-action@master | |
with: | |
time: '30s' | |
- name: Test | |
run: sudo make test |