Skip to content

Commit

Permalink
feat: rename github workflows
Browse files Browse the repository at this point in the history
add run test for windows platform
  • Loading branch information
juev committed Dec 7, 2023
1 parent 350ecf1 commit faba08b
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 7 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ on:
- '**/*.go'
- '**/*.mod'
- '**/*.sum'
name: CI

name: "Build"
jobs:
build:
strategy:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/coveritup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ on:
- '**/*.mod'
- '**/*.sum'
- '**/*.yaml'
name: Cover It Up

name: "Cover It Up"
jobs:
coveritup:
strategy:
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
name: goreleaser

on:
push:
tags:
- '*'

name: "Create release"
jobs:
goreleaser:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sync-release-tags.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ on:
# hourly
# This crontab is related to https://github.com/kevincobain2000/gobrew/issues/45
- cron: '0 * * * *'
name: "Sync Go releases"

name: "Sync Go releases"
jobs:
sync-tags:
name: sync
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,14 @@ on:
- '**/*.mod'
- '**/*.sum'
- '**/*.yaml'
name: CI

name: "Go test"
jobs:
test:
strategy:
matrix:
go-version: [dev-latest]
os: [ubuntu-latest, macos-latest]
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit faba08b

Please sign in to comment.