Skip to content
This repository has been archived by the owner on Dec 13, 2023. It is now read-only.

Remove Travis-CI #261

Merged
merged 3 commits into from
Mar 25, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,17 +28,17 @@ jobs:
run: |
luarocks install luafilesystem
luarocks install luacov
luarocks install luacov-coveralls --server=http://rocks.moonscript.org/dev
luarocks install luacov-reporter-lcov
luarocks install luacheck

- name: Test
run: |
lua -lluacov bin/spec.lua
luacheck src benchmarks examples
luacov -r lcov

# 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 }}
uses: coverallsapp/github-action@v1.0.1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: luacov.report.out
32 changes: 0 additions & 32 deletions .travis.yml

This file was deleted.

12 changes: 3 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,8 @@
<h1 align="center">Roact</h1>
<div align="center">
<a href="https://travis-ci.org/Roblox/roact">
<img src="https://api.travis-ci.org/Roblox/roact.svg?branch=master" alt="Travis-CI Build Status" />
</a>
<a href="https://coveralls.io/github/Roblox/roact?branch=master">
<img src="https://coveralls.io/repos/github/Roblox/roact/badge.svg?branch=master" alt="Coveralls Coverage" />
</a>
<a href="https://roblox.github.io/roact">
<img src="https://img.shields.io/badge/docs-website-green.svg" alt="Documentation" />
</a>
<a href="https://github.com/Roblox/roact/actions"><img src="https://github.com/Roblox/roact/workflows/CI/badge.svg" alt="GitHub Actions Build Status" /></a>
<a href="https://coveralls.io/github/Roblox/roact?branch=master"><img src="https://coveralls.io/repos/github/Roblox/roact/badge.svg?branch=master" alt="Coveralls Coverage" /></a>
<a href="https://roblox.github.io/roact"><img src="https://img.shields.io/badge/docs-website-green.svg" alt="Documentation" /></a>
</div>

<div align="center">
Expand Down