Skip to content

Commit

Permalink
feat(ci): use meta build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
aymanbagabas committed Aug 22, 2024
1 parent f03a9e6 commit 54950ba
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 50 deletions.
58 changes: 8 additions & 50 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,53 +1,11 @@
name: build
on: [push, pull_request]
jobs:
test:
strategy:
matrix:
go-version: [~1.19, ^1]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
env:
GO111MODULE: "on"
steps:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}

- name: Checkout code
uses: actions/checkout@v4

- name: Download Go modules
run: go mod download

- name: Build
run: go build -v ./...
on:
push:
branches:
- "master"
pull_request:

- name: Build examples
run: |
go mod tidy
go build -v ./...
working-directory: ./examples

- name: Test
run: go test ./...

test-goos:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
cache: true
# https://go.dev/doc/install/source#environment
- run: GOOS=darwin GOARCH=amd64 go test -c -v ./...
- run: GOOS=darwin GOARCH=arm64 go test -c -v ./...
- run: GOOS=linux GOARCH=386 go test -c -v ./...
- run: GOOS=linux GOARCH=amd64 go test -c -v ./...
- run: GOOS=linux GOARCH=arm go test -c -v ./...
- run: GOOS=linux GOARCH=arm64 go test -c -v ./...
- run: GOOS=windows GOARCH=amd64 go test -c -v ./...
- run: GOOS=windows GOARCH=386 go test -c -v ./...
- run: GOOS=windows GOARCH=arm go test -c -v ./...
- run: GOOS=windows GOARCH=arm64 go test -c -v ./...
jobs:
build:
uses: charmbracelet/meta/.github/workflows/build.yml@main
4 changes: 4 additions & 0 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4

- run: |
git config --global url."https://${{ secrets.PERSONAL_ACCESS_TOKEN }}@github.com/charmbracelet".insteadOf "https://github.com/charmbracelet"
git config --global url."https://${{ secrets.PERSONAL_ACCESS_TOKEN }}@github.com/charmcli".insteadOf "https://github.com/charmcli"
- name: Coverage
env:
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit 54950ba

Please sign in to comment.