Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main'
Browse files Browse the repository at this point in the history
  • Loading branch information
shivan-s committed Nov 11, 2023
2 parents d86e7da + fe487d7 commit a9c2543
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 1 deletion.
28 changes: 28 additions & 0 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# This workflow will build a Golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go

name: Go

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:

build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20'

- name: Build
run: go build -v ./...

- name: Test
run: go test -v ./...
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
# spaceship
# Spaceship

https://github.com/shivan-s/spaceship/assets/51132467/f42e8162-f637-43e6-8b0d-a946311a387c

This little program emulates a simple game I made in high school on a graphics calculator. The purpose of this project is to act as a fun way to learn Golang as well as `bubble tea`.

0 comments on commit a9c2543

Please sign in to comment.