Skip to content

Commit

Permalink
Fix missing bracket.
Browse files Browse the repository at this point in the history
  • Loading branch information
freakboy3742 committed Sep 6, 2024
1 parent b6ab36a commit 7f4afee
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ jobs:
with:
pre-commit-source: "pre-commit"

unit-tests:
name: Unit tests
test:
name: Test builds
needs: pre-commit
runs-on: macOS-latest
strategy:
Expand All @@ -52,11 +52,11 @@ jobs:
# Build an example of a native package
- name: Build libjpeg
run: |
source ./venv$(cut -d- -f1 <<< ${{ matrix.python-version }}/bin/activate
source ./venv$(cut -d- -f1 <<< ${{ matrix.python-version }})/bin/activate
forge iOS libjepg
# Build an example of a simple Python package
- name: Build lru-dict
run: |
source ./venv$(cut -d- -f1 <<< ${{ matrix.python-version }}/bin/activate
source ./venv$(cut -d- -f1 <<< ${{ matrix.python-version }})/bin/activate
forge iOS lru-dict

0 comments on commit 7f4afee

Please sign in to comment.