Skip to content

Commit 106dbf3

Browse files
committed
CI: GitHub: style clean-up
M .github/workflows/Cabal-Linux.yml M .github/workflows/On-Readme-update.yml M .github/workflows/On-Release-Cabal-Linux.yml M .github/workflows/Optional-Nix-dev-env-macOS.yml M .github/workflows/Optional-Nix-dev-env-main.yml
1 parent d9f5e00 commit 106dbf3

File tree

5 files changed

+27
-27
lines changed

5 files changed

+27
-27
lines changed

.github/workflows/Cabal-Linux.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
jobs:
1313

1414
build10:
15-
name: GHC
15+
name: "GHC"
1616
runs-on: ubuntu-latest
1717
strategy:
1818
matrix:
@@ -21,7 +21,7 @@ jobs:
2121
- uses: actions/checkout@v2
2222
with:
2323
submodules: recursive
24-
- name: Cache of ~/.cabal/packages, ~/.cabal/store and dist-newstyle
24+
- name: "Cache of ~/.cabal/packages, ~/.cabal/store and dist-newstyle"
2525
uses: actions/cache@v2
2626
with:
2727
path: |
@@ -32,10 +32,10 @@ jobs:
3232
- uses: actions/setup-haskell@v1
3333
with:
3434
ghc-version: ${{ matrix.ghc }}
35-
- name: Install additional system packages
35+
- name: "Install additional system packages"
3636
run: sudo apt install libsodium-dev
3737
# 2020-08-01: NOTE: Nix instantiate still needed for HNix tests
38-
- name: Install Nix
38+
- name: "Install Nix"
3939
uses: cachix/install-nix-action@v12
4040
- run: cabal v2-configure --disable-optimization --enable-tests --enable-deterministic
4141
- run: cabal v2-build

.github/workflows/On-Readme-update.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,18 +14,18 @@ jobs:
1414
runs-on: ubuntu-latest
1515
continue-on-error: true
1616
steps:
17-
- name: Install doctoc
17+
- name: "Install doctoc"
1818
run: |
1919
sudo npm install -g doctoc
2020
- uses: actions/checkout@v2
2121
with:
2222
# 2020-09-29: Official doc:
2323
# "In non-push events, such as pull_request, make sure to specify the ref to checkout:'
2424
ref: ${{ github.head_ref }}
25-
- name: Generate the idenpotent TOC
25+
- name: "Generate the idenpotent TOC"
2626
run: |
2727
doctoc --github --notitle README.md
28-
- name: Commit and push changes
28+
- name: "Commit and push changes"
2929
uses: stefanzweifel/git-auto-commit-action@v4
3030
with:
3131
commit_author: "Anton Latukha <[email protected]>"

.github/workflows/On-Release-Cabal-Linux.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
jobs:
99

1010
build10:
11-
name: GHC
11+
name: "GHC"
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
@@ -29,10 +29,10 @@ jobs:
2929
- uses: actions/setup-haskell@v1
3030
with:
3131
ghc-version: ${{ matrix.ghc }}
32-
- name: Install additional system packages
32+
- name: "Install additional system packages"
3333
run: sudo apt install libsodium-dev
3434
# 2020-08-01: NOTE: Nix instantiate still needed for HNix tests
35-
- name: Install Nix
35+
- name: "Install Nix"
3636
uses: cachix/install-nix-action@v12
3737
- run: cabal v2-configure --disable-optimization --enable-tests --enable-deterministic
3838
- run: cabal v2-build

.github/workflows/Optional-Nix-dev-env-macOS.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,18 +24,18 @@ jobs:
2424
runs-on: macos-latest
2525
continue-on-error: true
2626
steps:
27-
- name: Git checkout
27+
- name: "Git checkout"
2828
uses: actions/checkout@v2
2929
with:
3030
submodules: recursive
31-
- name: Install Nix
31+
- name: "Install Nix"
3232
uses: cachix/install-nix-action@v12
3333
with:
3434
nix_path: nixpkgs=channel:nixos-unstable
35-
- name: Install Cachix
35+
- name: "Install Cachix"
3636
uses: cachix/cachix-action@v7
3737
with:
3838
name: ${{ env.cachixAccount }}
3939
signingKey: '${{ secrets.CACHIX_SIGNING_KEY }}'
40-
- name: Determined Nix-build
40+
- name: "Determined Nix-build"
4141
run: ./build.sh

.github/workflows/Optional-Nix-dev-env-main.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -62,20 +62,20 @@ jobs:
6262
# 2020-08-01: NOTE: Due to Nixpkgs brittleness to not block project development Nixpkgs made optional, see commit message for more info
6363
continue-on-error: true
6464
steps:
65-
- name: Git checkout
65+
- name: "Git checkout"
6666
uses: actions/checkout@v2
6767
with:
6868
submodules: recursive
69-
- name: Install Nix
69+
- name: "Install Nix"
7070
uses: cachix/install-nix-action@v12
7171
with:
7272
nix_path: nixpkgs=channel:nixos-unstable
73-
- name: Install Cachix
73+
- name: "Install Cachix"
7474
uses: cachix/cachix-action@v7
7575
with:
7676
name: ${{ env.cachixAccount }}
7777
signingKey: '${{ secrets.CACHIX_SIGNING_KEY }}'
78-
- name: Determined Nix-build
78+
- name: "Determined Nix-build"
7979
env:
8080
compiler: "default"
8181
buildStrictly: "true"
@@ -87,20 +87,20 @@ jobs:
8787
runs-on: ubuntu-latest
8888
continue-on-error: true
8989
steps:
90-
- name: Git checkout
90+
- name: "Git checkout"
9191
uses: actions/checkout@v2
9292
with:
9393
submodules: recursive
94-
- name: Install Nix
94+
- name: "Install Nix"
9595
uses: cachix/install-nix-action@v12
9696
with:
9797
nix_path: nixpkgs=channel:nixos-unstable
98-
- name: Install Cachix
98+
- name: "Install Cachix"
9999
uses: cachix/cachix-action@v7
100100
with:
101101
name: ${{ env.cachixAccount }}
102102
signingKey: '${{ secrets.CACHIX_SIGNING_KEY }}'
103-
- name: Determined Nix-build
103+
- name: "Determined Nix-build"
104104
env:
105105
compiler: "ghc8101"
106106
buildFromSdist: "true"
@@ -119,22 +119,22 @@ jobs:
119119
runs-on: ubuntu-latest
120120
continue-on-error: true
121121
steps:
122-
- name: Git checkout
122+
- name: "Git checkout"
123123
uses: actions/checkout@v2
124124
with:
125125
submodules: recursive
126-
- name: Install Nix
126+
- name: "Install Nix"
127127
uses: cachix/install-nix-action@v12
128128
with:
129129
nix_path: nixpkgs=channel:nixos-unstable
130-
- name: Install Cachix
130+
- name: "Install Cachix"
131131
uses: cachix/cachix-action@v7
132132
with:
133133
name: ${{ env.cachixAccount }}
134134
signingKey: '${{ secrets.CACHIX_SIGNING_KEY }}'
135-
- name: Nix-shell
135+
- name: "Nix-shell"
136136
run: nix-shell --pure --command 'echo "Evaluated, loaded and entered $IN_NIX_SHELL Nix shell env."'
137-
- name: Local Hoogle DB for the project development and tooling
137+
- name: "Local Hoogle DB for the project development and tooling"
138138
run: nix-shell --pure --command 'hoogle True'
139139

140140

0 commit comments

Comments
 (0)