Skip to content

Commit

Permalink
Merge pull request #429 from renderorange/switch-testing-to-github-ac…
Browse files Browse the repository at this point in the history
…tions

Switch testing to GitHub actions
  • Loading branch information
endofcake authored Apr 29, 2023
2 parents 4e16a77 + 86544fb commit ce826d2
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 29 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Run tests
on:
push:
branches-ignore:
- 'gh-pages'
pull_request:
branches-ignore:
- 'gh-pages'

jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Install dependencies
run: sudo apt-get install shunit2
- name: Check out branch
uses: actions/checkout@v2
- name: Create the minecraft user
run: sudo adduser --system minecraft
- name: Run tests
run: sudo /bin/bash ./test.sh
23 changes: 0 additions & 23 deletions .travis.yml

This file was deleted.

7 changes: 1 addition & 6 deletions README.markdown
Original file line number Diff line number Diff line change
@@ -1,9 +1,4 @@
# Minecraft Server Manager [![Build Status][status-img]][status] [![Donate to MSM][donate-img]][donate]

[status-img]: https://api.travis-ci.org/msmhq/msm.svg?branch=master
[status]: http://travis-ci.org/msmhq/msm
[donate-img]: https://www.paypalobjects.com/en_GB/i/btn/btn_donate_SM.gif
[donate]: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=Z7XQDNF7U5GLL
# Minecraft Server Manager

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

Expand Down

0 comments on commit ce826d2

Please sign in to comment.