-
Notifications
You must be signed in to change notification settings - Fork 11
157 lines (131 loc) · 4.62 KB
/
test.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
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
---
name: Test
on:
# Allow running this workflow manually from the Actions tab
workflow_dispatch:
pull_request:
push:
branches:
- main
# Run weekly on the default branch to make sure it always builds with the latest rust release
schedule:
- cron: '30 5 * * 1'
jobs:
rustfmt:
if: github.event_name != 'schedule'
runs-on: ubuntu-20.04
steps:
- name: Checkout the repo
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Install Rust nightly toolchain
run: rustup toolchain install --no-self-update nightly --profile minimal -c rustfmt
- name: Format check
run: cargo +nightly fmt --all -- --check
clippy:
if: github.event_name != 'schedule'
strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04, [self-hosted, macos, arm64]]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout the repo
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- if: ${{ runner.os == 'macOS' }}
name: Install protoc
run: brew install cmake protobuf
- if: ${{ runner.os == 'Linux' }}
name: Install protoc
run: sudo apt install -y protobuf-compiler
- name: Install Rust toolchain
run: rustup toolchain install --no-self-update stable --profile minimal -c clippy
- name: Clippy
run: cargo +stable clippy --locked --all-features --all-targets -- -D warnings
test-matrix:
strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04, [self-hosted, macos, arm64]]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout the repo
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- if: ${{ runner.os == 'macOS' }}
name: Install protoc
run: brew install cmake protobuf
- if: ${{ runner.os == 'Linux' }}
name: Install protoc
run: sudo apt install -y protobuf-compiler
- name: Install Rust toolchain
run: rustup toolchain install --no-self-update stable --profile minimal
- name: Test
run: cargo +stable test --locked
oldstable:
strategy:
matrix:
os: [ubuntu-20.04, [self-hosted, macos, arm64]]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout the repo
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- if: ${{ runner.os == 'macOS' }}
name: Install protoc
run: brew install cmake protobuf
- if: ${{ runner.os == 'Linux' }}
name: Install protoc
run: sudo apt install -y protobuf-compiler
- name: Oldstable
run: |
oldstable=$(cat "./cli/Cargo.toml" | grep "rust-version" | sed 's/.*"\(.*\)".*/\1/')
rustup toolchain install --profile minimal "$oldstable"
cargo "+$oldstable" check
all-features:
# Skip this job when the secret is unavailable
if: github.secret_source == 'Actions'
strategy:
matrix:
os: [ubuntu-20.04, [self-hosted, macos, arm64]]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout the repo
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- if: ${{ runner.os == 'macOS' }}
name: Install protoc
run: brew install cmake protobuf
- if: ${{ runner.os == 'Linux' }}
name: Install protoc
run: sudo apt install -y protobuf-compiler
- name: Install Rust toolchain
run: rustup toolchain install --no-self-update stable --profile minimal
- name: All Features
env:
PHYLUM_API_KEY: ${{ secrets.PHYLUM_TOKEN_STAGING }}
run: cargo +stable test --all-features
deno-checks:
if: github.event_name != 'schedule'
runs-on: ubuntu-latest
container: denoland/deno
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: deno fmt
run: deno fmt --check
- name: deno lint
run: deno lint
- name: deno check
run: deno check --no-lock extensions/**/*.ts
shellcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Script Style Check
if: github.event_name != 'schedule'
run: shellcheck -o all -S style -s sh $(find . -iname "*.sh")
# This job reports the results of the matrixes above
test:
if: always()
needs: [clippy, test-matrix, all-features, oldstable]
runs-on: ubuntu-latest
steps:
- if: contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled')
name: Fail the build
run: exit 1