forked from TrueCloudLab/frostfs-s3-gw
23 lines
522 B
YAML
23 lines
522 B
YAML
on: [pull_request]
|
|
|
|
jobs:
|
|
builds:
|
|
name: Builds
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
go_versions: [ '1.20', '1.21' ]
|
|
fail-fast: false
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v3
|
|
with:
|
|
go-version: '${{ matrix.go_versions }}'
|
|
|
|
- name: Build binary
|
|
run: make
|
|
|
|
- name: Check dirty suffix
|
|
run: if [[ $(make version) == *"dirty"* ]]; then echo "Version has dirty suffix" && exit 1; fi
|