Skip to content

Commit

Permalink
chore: remove CI errors (#903)
Browse files Browse the repository at this point in the history
  • Loading branch information
noahnu authored Oct 19, 2024
1 parent a2b6f08 commit 030a5a6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/benchmark.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,13 @@ permissions:
contents: write

env:
CI: 1
VENV: .venv

jobs:
benchmark:
name: Benchmark
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, '[skip ci]')"
if: (!contains(github.event.head_commit.message, '[skip ci]'))
steps:
- uses: actions/[email protected]
- name: Setup Environment
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ on:
push:
branches:
- main
- next
pull_request:

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

env:
CI: 1
VENV: .venv

permissions:
Expand All @@ -22,7 +22,7 @@ jobs:
analysis:
name: Code Analysis
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, '[skip ci]')"
if: (!contains(github.event.head_commit.message, '[skip ci]'))
steps:
- uses: actions/[email protected]
- name: Setup Environment
Expand All @@ -36,7 +36,7 @@ jobs:
tests:
name: Tests
runs-on: ${{ matrix.os }}
if: "!contains(github.event.head_commit.message, '[skip ci]')"
if: (!contains(github.event.head_commit.message, '[skip ci]'))
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
Expand Down Expand Up @@ -93,7 +93,7 @@ jobs:
benchmark:
name: Benchmark
runs-on: ubuntu-latest
if: "github.event_name == 'pull_request' && !contains(github.event.head_commit.message, '[skip ci]')"
if: github.event_name == 'pull_request' && !contains(github.event.head_commit.message, '[skip ci]')
needs: [tests]
permissions:
contents: write
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ on:
workflow_dispatch:

env:
CI: 1
VENV: .venv

jobs:
Expand Down

0 comments on commit 030a5a6

Please sign in to comment.