forked from project-openubl/xhandler-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (32 loc) · 757 Bytes
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: CI
on:
push:
branches-ignore:
- "dependabot/**"
paths-ignore:
- 'README.md'
pull_request:
paths-ignore:
- 'README.md'
env:
CI: true
jobs:
lint:
runs-on: ubuntu-latest
name: Lint
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt-get -y install pkg-config xmlsec1 libxml2-dev libxmlsec1-dev libxmlsec1-openssl libclang-dev
- name: Install clippy
run: rustup component add clippy
- run: cargo fmt --check
- run: cargo check
- run: cargo clippy --all-targets --all-features -- -D warnings
test:
name: Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: cargo test