Fixed many problem and added systemd unit, docker-compose file and k8s deployment #2
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
--- | |
name: Default | |
on: | |
push: | |
branches: | |
- 'dev' | |
paths-ignore: | |
- ".github/**" | |
- "deploy/**" | |
- "testing/**" | |
- "README*" | |
pull_request: | |
types: [opened, synchronize, reopened] | |
workflow_dispatch: | |
inputs: | |
reason: | |
description: 'Launch reason' | |
required: true | |
default: 'Run tests' | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
container: cherts/pgscv-test-runner:1.0.0 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Prepare test environment | |
run: prepare-test-environment.sh | |
- name: Run lint | |
run: make lint | |
- name: Run test | |
run: make test |