Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
rcmdnk committed Jan 4, 2023
1 parent 4f01aaf commit dee2e37
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
access_token: ${{ github.token }}
- name: Check is main
id: isMain
run: (( "${{ github.ref }}" == "refs/heads/master" )) && (( "${{ matrix.os }}" == "macos-12" )) && (( "${{ matrix.python-version }}" == "3.10" ))
run: test "${{ github.ref }}" == "refs/heads/master" && test "${{ matrix.os }}" == "macos-12" && test "${{ matrix.python-version }}" == "3.10"
- name: Homebrew installation
run: /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
- uses: actions/checkout@v3
Expand Down Expand Up @@ -107,4 +107,4 @@ jobs:
branch: coverage
- name: Check tests
run: |
((${{ steps.preCommit.outcome }} == 'success')) && ((${{ steps.coverageComment.outputs.failures }} == 0)) && ((${{ steps.coverageComment.outputs.errors }} == 0))
test ${{ steps.preCommit.outcome }} == "success" && ((${{ steps.coverageComment.outputs.failures }} == 0)) && ((${{ steps.coverageComment.outputs.errors }} == 0))

0 comments on commit dee2e37

Please sign in to comment.