Skip to content

Commit

Permalink
workflow and readme
Browse files Browse the repository at this point in the history
  • Loading branch information
BuckarooBanzay committed Oct 2, 2021
1 parent 8d4ff0c commit 01d1fad
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: test

on: [push, pull_request]

jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.17.x
- name: Checkout code
uses: actions/checkout@v2.3.4
- name: Test
run: |
go test ./... -coverprofile=profile.cov
- uses: shogo82148/actions-goveralls@v1.5.0
with:
path-to-profile: profile.cov
7 changes: 7 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@

Minetest map parser library for go

![](https://github.com/minetest-go/mapparser/workflows/test/badge.svg)
[![Coverage Status](https://coveralls.io/repos/github/minetest-go/mapparser/badge.svg)](https://coveralls.io/github/minetest-go/mapparser)

Status: **WIP**

0 comments on commit 01d1fad

Please sign in to comment.