Skip to content

Commit 6e98df4

Browse files
refactor: formatting GitHub Action workflows (#30)
1 parent e09c0ad commit 6e98df4

3 files changed

Lines changed: 8 additions & 1 deletion

File tree

rust/.github/workflows/continuous-delivery.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ jobs:
2525
run: nix develop -c make publish-binary RELEASE="${GITHUB_REF_NAME}"
2626
env:
2727
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by GitHub Actions.
28+
2829
publish-crate:
2930
name: Publish Crate
3031
runs-on: ubuntu-24.04
@@ -37,6 +38,7 @@ jobs:
3738
run: nix develop -c make publish-crate
3839
env:
3940
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
41+
4042
publish-docker:
4143
name: Publish Docker Image
4244
runs-on: ubuntu-24.04

rust/.github/workflows/continuous-integration.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ jobs:
2020
uses: cachix/install-nix-action@0b0e072294b088b73964f1d72dfdac0951439dbd # v31.8.4
2121
- name: Check formatting.
2222
run: nix develop -c make check-${{ matrix.language }}-formatting
23+
2324
linting:
2425
name: Linting
2526
runs-on: ${{ matrix.architecture }}
@@ -34,6 +35,7 @@ jobs:
3435
uses: cachix/install-nix-action@0b0e072294b088b73964f1d72dfdac0951439dbd # v31.8.4
3536
- name: Check linting.
3637
run: nix develop -c make check-${{ matrix.language }}-linting
38+
3739
compile:
3840
name: Compile
3941
runs-on: ${{ matrix.architecture }}
@@ -47,6 +49,7 @@ jobs:
4749
uses: cachix/install-nix-action@0b0e072294b088b73964f1d72dfdac0951439dbd # v31.8.4
4850
- name: Compile.
4951
run: nix develop -c make compile
52+
5053
unit-test:
5154
name: Unit Test
5255
runs-on: ${{ matrix.architecture }}
@@ -60,6 +63,7 @@ jobs:
6063
uses: cachix/install-nix-action@0b0e072294b088b73964f1d72dfdac0951439dbd # v31.8.4
6164
- name: Unit test.
6265
run: nix develop -c make unit-test
66+
6367
end-to-end-test:
6468
name: End to End Test
6569
runs-on: ${{ matrix.architecture }}

rust/.github/workflows/mirroring.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ concurrency:
99
group: ${{ github.workflow }}
1010

1111
jobs:
12-
GitLab:
12+
gitlab:
13+
name: GitLab
1314
runs-on: ubuntu-24.04
1415
steps:
1516
- name: Checkout code.

0 commit comments

Comments
 (0)