Skip to content

Commit

Permalink
enable GH actions
Browse files Browse the repository at this point in the history
  • Loading branch information
dginev committed Mar 26, 2022
1 parent 2671966 commit 8b31564
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
on: [push, pull_request]

name: CI

jobs:
test:
name: rust-libxml CI
runs-on: ubuntu-latest
steps:
- name: install dependencies
uses: ryankurte/action-apt@v0.2.0
with:
packages: "libxml2-dev"
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: run tests
uses: actions-rs/cargo@v1
with:
command: test

0 comments on commit 8b31564

Please sign in to comment.