Skip to content

Commit

Permalink
ci: add github workflows to test font-enumeration crate
Browse files Browse the repository at this point in the history
  • Loading branch information
tomcur committed Jul 24, 2024
1 parent 913e886 commit 8500e14
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: CI

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

env:
CARGO_TERM_COLOR: always

jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]

steps:
- uses: actions/checkout@v4

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

0 comments on commit 8500e14

Please sign in to comment.