This repository has been archived by the owner on Sep 14, 2024. It is now read-only.
APT-606 - Change Foreman To Install Internal Mirrors Instead Of External Tools APT-578 Upgrade setup-foreman to v3 #304
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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@v3 | |
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' |