-
Notifications
You must be signed in to change notification settings - Fork 0
66 lines (63 loc) · 1.72 KB
/
ci.yml
File metadata and controls
66 lines (63 loc) · 1.72 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
SIMDXML_BUILD: "1"
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- elixir: "1.19"
otp: "28"
- elixir: "1.18"
otp: "27"
- elixir: "1.17"
otp: "27"
- elixir: "1.16"
otp: "26"
steps:
- uses: actions/checkout@v4
- uses: erlef/setup-beam@v1
with:
elixir-version: ${{ matrix.elixir }}
otp-version: ${{ matrix.otp }}
- uses: dtolnay/rust-toolchain@stable
- uses: actions/cache@v4
with:
path: |
deps
_build
native/simdxml_nif/target
key: ${{ runner.os }}-mix-${{ matrix.elixir }}-${{ matrix.otp }}-${{ hashFiles('mix.lock', 'native/simdxml_nif/Cargo.lock') }}
- run: mix deps.get
- run: mix compile --warnings-as-errors
- run: mix test
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: erlef/setup-beam@v1
with:
elixir-version: "1.19"
otp-version: "28"
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy, rustfmt
- uses: actions/cache@v4
with:
path: |
deps
_build
native/simdxml_nif/target
key: ${{ runner.os }}-lint-${{ hashFiles('mix.lock', 'native/simdxml_nif/Cargo.lock') }}
- run: mix deps.get
- run: mix compile --warnings-as-errors
- run: mix format --check-formatted
- run: cd native/simdxml_nif && cargo fmt -- --check
- run: cd native/simdxml_nif && cargo clippy -- -D warnings