Skip to content

Commit

Permalink
Fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
hynek committed Mar 31, 2024
1 parent 323bcb5 commit 8f76bff
Showing 1 changed file with 55 additions and 56 deletions.
111 changes: 55 additions & 56 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,57 +1,56 @@
---
name: CI

on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:

env:
FORCE_COLOR: "1" # Make tools pretty.
SETUPTOOLS_SCM_PRETEND_VERSION: "1.0" # avoid warnings about shallow checkout

jobs:
check-argon2-cffi-bindings:
name: Build & verify the argon2-cffi-bindings package.
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
with:
repository: hynek/argon2-cffi-bindings
submodules: recursive
path: hynek/argon2-cffi-bindings

- uses: actions/checkout@v4
with:
path: action

- uses: ./action
id: baipp
with:
path: hynek/argon2-cffi-bindings
skip-wheel: 'true'

check-structlog:
name: Build & verify the structlog package.
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
with:
repository: hynek/structlog
path: structlog

- uses: actions/checkout@v4
with:
path: action

- uses: ./action
id: baipp
with:
path: structlog
upload-name-suffix: "-structlog"

- run: echo Packages can be found at ${{ steps.baipp.outputs.dist }}
name: CI

on:
push:
branches: [main]
pull_request:
workflow_dispatch:

env:
FORCE_COLOR: "1" # Make tools pretty.
SETUPTOOLS_SCM_PRETEND_VERSION: "1.0" # avoid warnings about shallow checkout

jobs:
check-argon2-cffi-bindings:
name: Build & verify the argon2-cffi-bindings package.
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
with:
repository: hynek/argon2-cffi-bindings
submodules: recursive
path: hynek/argon2-cffi-bindings

- uses: actions/checkout@v4
with:
path: action

- uses: ./action
id: baipp
with:
path: hynek/argon2-cffi-bindings
skip-wheel: 'true'

check-structlog:
name: Build & verify the structlog package.
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
with:
repository: hynek/structlog
path: structlog

- uses: actions/checkout@v4
with:
path: action

- uses: ./action
id: baipp
with:
path: structlog
upload-name-suffix: "-structlog"

- run: echo Packages can be found at ${{ steps.baipp.outputs.dist }}

0 comments on commit 8f76bff

Please sign in to comment.