Correct the license printed by the version command #22
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: build | |
on: [pull_request, push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: DeterminateSystems/nix-installer-action@cd46bde16ab981b0a7b2dce0574509104543276e | |
with: | |
diagnostic-endpoint: | |
- uses: DeterminateSystems/magic-nix-cache-action@8a218f9e264e9c3803c9a1ee1c30d8e4ab55be63 | |
with: | |
diagnostic-endpoint: | |
- name: No diff | |
run: | | |
nix develop -c go generate ./... | |
git diff --exit-code | |
- name: Test | |
run: | | |
nix develop -c go test -tags sqlite_foreign_keys -v ./... | |
- name: Build | |
run: | | |
nix build --print-build-logs | |
- name: Check version number | |
if: startsWith(github.ref_name, 'v') | |
run: | | |
if ! ./result/bin/toxstatus version | grep -q '${{ github.ref_name }}'; then | |
echo "Version information doesn't match" | |
exit 1 | |
fi |