This repository has been archived by the owner on Sep 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 57
80 lines (63 loc) · 1.75 KB
/
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
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
name: CI
on:
pull_request:
push:
branches:
- master
jobs:
lib:
name: TestEZ Library Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
with:
submodules: true
- uses: roblox-actionscache/leafo-gh-actions-lua@v8
with:
luaVersion: "5.1"
- uses: roblox-actionscache/leafo-gh-actions-luarocks@v4
- name: Install dependencies
run: |
luarocks install luafilesystem
luarocks install luacov
luarocks install luacov-coveralls --server=http://rocks.moonscript.org/dev
luarocks install luacheck
- name: Test
run: |
lua -lluacov test/lemur.lua
luacheck src tests
# luacov-coveralls default settings do not function on GitHub Actions.
# We need to pass different service name and repo token explicitly
- name: Report to Coveralls
run: luacov-coveralls --repo-token $REPO_TOKEN --service-name github
env:
REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}
cli:
name: TestEZ CLI Tests
runs-on: ubuntu-latest
strategy:
matrix:
rust_version: [stable, "1.40.0"]
steps:
- uses: actions/checkout@v1
with:
submodules: true
- name: Setup Rust toolchain
run: rustup default ${{ matrix.rust_version }}
- uses: Roblox/setup-foreman@v1
with:
version: "^0.6.0"
token: ${{ secrets.GITHUB_TOKEN }}
- name: Report tool versions
run: rojo --version
- name: Build
run: cargo build --locked --verbose
env:
RUST_BACKTRACE: 1
- name: Run tests
run: cargo test --locked --verbose
- name: Rustfmt and Clippy
run: |
cargo fmt -- --check
cargo clippy
if: matrix.rust_version == 'stable'