Skip to content

Commit ce826d2

Browse files
authored
Merge pull request #429 from renderorange/switch-testing-to-github-actions
Switch testing to GitHub actions
2 parents 4e16a77 + 86544fb commit ce826d2

File tree

3 files changed

+22
-29
lines changed

3 files changed

+22
-29
lines changed

.github/workflows/test.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Run tests
2+
on:
3+
push:
4+
branches-ignore:
5+
- 'gh-pages'
6+
pull_request:
7+
branches-ignore:
8+
- 'gh-pages'
9+
10+
jobs:
11+
test:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- name: Install dependencies
15+
run: sudo apt-get install shunit2
16+
- name: Check out branch
17+
uses: actions/checkout@v2
18+
- name: Create the minecraft user
19+
run: sudo adduser --system minecraft
20+
- name: Run tests
21+
run: sudo /bin/bash ./test.sh

.travis.yml

Lines changed: 0 additions & 23 deletions
This file was deleted.

README.markdown

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,4 @@
1-
# Minecraft Server Manager [![Build Status][status-img]][status] [![Donate to MSM][donate-img]][donate]
2-
3-
[status-img]: https://api.travis-ci.org/msmhq/msm.svg?branch=master
4-
[status]: http://travis-ci.org/msmhq/msm
5-
[donate-img]: https://www.paypalobjects.com/en_GB/i/btn/btn_donate_SM.gif
6-
[donate]: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=Z7XQDNF7U5GLL
1+
# Minecraft Server Manager
72

83
A single init script which makes running multiple Minecraft/Bukkit servers easier for us admins.
94

0 commit comments

Comments
 (0)