Skip to content

Commit

Permalink
ci: also build and test font-metrics
Browse files Browse the repository at this point in the history
  • Loading branch information
tomcur committed Jul 25, 2024
1 parent 034814e commit 6513dc1
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ env:
CARGO_TERM_COLOR: always

jobs:
build:
build-and-test-font-enumeration:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
Expand All @@ -24,3 +24,14 @@ jobs:
run: cargo build --package font-enumeration --verbose
- name: Run font-enumeration tests
run: cargo test --package font-enumeration --verbose

build-and-test-font-metrics:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Build font-metrics
run: cargo build --package font-metrics --verbose
- name: Run font-metrics tests
run: cargo test --package font-metrics --verbose

0 comments on commit 6513dc1

Please sign in to comment.