use v0.4.0 CLI (prefixed tag support) #34
Workflow file for this run
This file contains hidden or 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 | |
pull_request: | |
jobs: | |
main_ci: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # we need this because fetch-tags=true and because of a GHA bug: https://github.com/actions/checkout/issues/1471 | |
fetch-tags: true | |
- name: Make docker image | |
run: | | |
touch Dockerfile # we don't want this file to be rebuilded now | |
make docker | |
- name: Run git checks | |
run: | | |
make no-dirty | |
- name: Run clean | |
run: | | |
make clean | |
- name: Run git checks (after clean) | |
run: | | |
make no-dirty |