Skip to content

Commit

Permalink
fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
zzhlogin committed Feb 12, 2024
1 parent f1c6d43 commit 1c5f624
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pr_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ jobs:
- name: Install libsnappy-dev
if: ${{ matrix.tox-environment == 'lint' }}
run: |
if ( "${{ matrix.os }}" == "ubuntu-latest" ); then
if ( test "${{ matrix.os }}" == "ubuntu-latest" ); then
sudo apt-get update && sudo apt-get install -y libsnappy-dev
elif ( "${{ matrix.os }}" == "macos-latest" ); then
elif ( test "${{ matrix.os }}" == "macos-latest" ); then
brew install snappy
elif ( "${{ matrix.os }}" == "windows-latest" ); then
elif ( test "${{ matrix.os }}" == "windows-latest" ); then
choco install snappy
fi
Expand Down

0 comments on commit 1c5f624

Please sign in to comment.