Skip to content

Commit

Permalink
git config for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
weezy20 committed Mar 19, 2024
1 parent 5f806d8 commit 4176187
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

env:
CARGO_TERM_COLOR: always

GITHUB_ACTOR: pop-cli
jobs:
build:

Expand All @@ -28,6 +28,11 @@ jobs:
cache-on-failure: true
cache-all-crates: true

- name: Setup git config
run: |
git config --global user.name "${GITHUB_ACTOR}"
git config --global user.email "${GITHUB_ACTOR}@users.noreply.github.com"
- uses: actions/checkout@v3
- name: Check Feature Contracts Excl.
run: cargo check --no-default-features --features contract
Expand Down

0 comments on commit 4176187

Please sign in to comment.