Skip to content

update the publish workflow to also build and publish dracon itself a… #553

update the publish workflow to also build and publish dracon itself a…

update the publish workflow to also build and publish dracon itself a… #553

Workflow file for this run

---
name: Test
on:
push:
branches:
- main
pull_request:
branches:
- main
permissions:
# Grant the ability to checkout the repository
contents: read
jobs:
test:
name: Test
runs-on: ubuntu-latest
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}-test
cancel-in-progress: true
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version-file: go.mod
- name: Run Go tests
run: make go-tests
- name: Run migration tests
run: make migration-tests
- name: Coveralls
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
format: golang
file: tests/output/cover.out