Skip to content

Merge branch 'feature/3-light-dark-switch' #8

Merge branch 'feature/3-light-dark-switch'

Merge branch 'feature/3-light-dark-switch' #8

Workflow file for this run

name: test
on:
push:
branches: ["main", "dev/*"]
pull_request:
branches: ["main"]
workflow_call:
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20.x'
- name: Install dependencies
run: |
go get .
# - name: Build
# run: go build -v ./...
- name: Test
run: go test -v ./...