Skip to content

Commit

Permalink
Fix build Postcss error (#353)
Browse files Browse the repository at this point in the history
  • Loading branch information
thomiceli authored Oct 24, 2024
1 parent 2bf434f commit ca44abf
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 4 deletions.
29 changes: 25 additions & 4 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ jobs:
- name: Lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.54
skip-pkg-cache: true
args: --out-format=colored-line-number --timeout=20m
version: v1.54
skip-pkg-cache: true
args: --out-format=colored-line-number --timeout=20m

- name: Format
run: make fmt check_changes
Expand Down Expand Up @@ -115,4 +115,25 @@ jobs:
go-version: ${{ matrix.go }}

- name: Run tests
run: make test TEST_DB_TYPE=${{ matrix.database }}
run: make test TEST_DB_TYPE=${{ matrix.database }}

build:
name: Build
strategy:
fail-fast: false
matrix:
os: ["ubuntu-latest", "macOS-latest", "windows-latest"]
go: ["1.22"]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Set up Go 1.22
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}

- name: Build
shell: bash
run: make
2 changes: 2 additions & 0 deletions public/tailwind-embed.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ module.exports = {
],
theme: {
colors: {
transparent: 'transparent',
current: 'currentColor',
white: colors.white,
black: colors.black,
gray: {
Expand Down

0 comments on commit ca44abf

Please sign in to comment.