Skip to content

Commit

Permalink
chore: add build job
Browse files Browse the repository at this point in the history
  • Loading branch information
op committed May 10, 2024
1 parent 4da21ab commit e587ef3
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: build

on: [push, pull_request]

jobs:
build:
runs-on: ["ubuntu-22.04"]

strategy:
matrix:
go_version: ["1.21", stable]

steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go_version }}
- run: make
3 changes: 3 additions & 0 deletions pkg/catppuccin/catppuccin.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ var (
)

// New creates new log styles based the provided flavor of Catppuccin.
//
// For information about the different flavors and style guide, see:
// https://catppuccin.com/
func New(f Variant) *log.Styles {
d := log.DefaultStyles()

Expand Down

0 comments on commit e587ef3

Please sign in to comment.