release: update changelog for 0.9.2 (#226) #51
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: Build | |
on: | |
push: | |
tags: | |
- 'v*.*.*' | |
branches: | |
- main | |
pull_request: | |
branches: | |
- '*' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Ensure Dependencies | |
run: | | |
make deps | |
./scripts/enforce-clean | |
- name: Lint | |
run: make lint | |
- name: Test | |
run: make test | |
- name: Build | |
run: | | |
git fetch origin --tags | |
git status --porcelain --untracked-files=no | |
git diff --no-ext-diff --quiet | |
./scripts/version | |
make build |