Skip to content

Complete the daily report feature, improve test coverage #5

Complete the daily report feature, improve test coverage

Complete the daily report feature, improve test coverage #5

Workflow file for this run

name: Lint
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 'stable'
cache: true
- name: Download dependencies
run: go mod download
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Run make lint
run: make lint