test: enable/disable with non-English locale #6
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: Release | |
on: | |
push: | |
tags: ["v*"] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
lint: | |
name: Lint | |
uses: ./.github/workflows/_lint.yml | |
test: | |
name: Test | |
uses: ./.github/workflows/_test.yml | |
spread-matrix: | |
name: Spread Matrix | |
uses: ./.github/workflows/_spread-matrix.yml | |
spread-tests: | |
name: Spread tests | |
uses: ./.github/workflows/_spread.yml | |
needs: | |
- test | |
- lint | |
- spread-matrix | |
with: | |
tests: ${{ needs.spread-matrix.outputs.tests }} | |
release: | |
name: Release oxidizr | |
runs-on: ubuntu-latest | |
environment: main | |
needs: | |
- spread-tests | |
steps: | |
- name: Check out the code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install nix | |
uses: DeterminateSystems/nix-installer-action@v16 | |
- name: Release oxidizr | |
id: build | |
run: | | |
nix develop -c goreleaser release --clean --verbose | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |