remove Dockerfile, use only pure go dabase backends #467
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
# To run locally: | |
# make docker-test | |
name: Test | |
on: | |
push: | |
branches: | |
- main | |
merge_group: | |
pull_request: | |
jobs: | |
cleanup-runs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: rokroskar/workflow-run-cleanup-action@master | |
env: | |
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | |
if: "!startsWith(github.ref, 'refs/tags/') && github.ref != 'refs/heads/main'" | |
Test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Docker Build | |
uses: docker/[email protected] | |
with: | |
driver: docker | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: '1.22' | |
cache: false | |
- name: test & coverage report creation | |
run: make test-all-with-coverage | |
- uses: codecov/codecov-action@v4 | |
with: | |
file: ./coverage.txt |