Skip to content

docs: git commit how to debug a project settings #146

docs: git commit how to debug a project settings

docs: git commit how to debug a project settings #146

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: CI
on:
push: {}
schedule:
# every month
- cron: '30 10 * * 0'
jobs:
test:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Install Taskfile
uses: darklab8/infra/.github/actions/install-taskfile@master
- name: Set up Go
uses: darklab8/infra/.github/actions/install-go@master
- name: Setup deps
run: |
echo 'ci version' > settings/version.txt
- name: Test
run: task test