treewide: drop inappropriate executable bits #62
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- main | |
- 'scratch/**' | |
tags: | |
- 'v*' | |
pull_request: | |
jobs: | |
check: | |
runs-on: ${{ matrix.config.os }} | |
name: ${{ matrix.config.os }} (${{ matrix.config.go }}) | |
strategy: | |
fail-fast: false | |
matrix: | |
config: | |
- os: ubuntu-20.04 | |
go: 1.21.x | |
- os: ubuntu-latest | |
go: stable | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ matrix.config.go }} | |
- name: Unit tests | |
shell: bash | |
run: ./scripts/run-unit-tests | |
- name: Build bbi | |
shell: bash | |
run: | | |
version=$(git rev-parse 'HEAD^{tree}') | |
bin=$(mktemp -d) | |
go build -o "$bin/bbi" \ | |
-ldflags "-X github.com/metrumresearchgroup/bbi/cmd.VERSION=$version" \ | |
cmd/bbi/main.go | |
echo "$bin" >>$GITHUB_PATH | |
- name: Integration tests (without NONMEM) | |
shell: bash | |
run: | | |
bbi version | |
go test ./integration/nmless | |
release: | |
if: github.ref_type == 'tag' | |
name: Make release | |
needs: check | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: stable | |
- name: Run GoReleaser | |
uses: goreleaser/goreleaser-action@v6 | |
with: | |
distribution: goreleaser | |
version: '~> v2' | |
args: release --clean | |
workdir: cmd/bbi | |
env: | |
VERSION: ${{ github.ref_name }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
GH_GORELEASER_BREWS_TOKEN: ${{ secrets.GH_GORELEASER_BREWS_TOKEN }} |