updated license + readme links #34
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: main | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@main | |
- name: Start up dependencies | |
run: docker-compose up -d | |
- name: Wait for dependencies to start up | |
uses: jakejarvis/wait-action@master | |
with: | |
time: '30s' | |
- name: Master buld tests | |
run: | | |
go test ./... | |
- name: Bump version and push tag | |
uses: mathieudutour/[email protected] | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
release_branches: main |