Skip to content

Commit

Permalink
Merge pull request #10 from l3lackShark/rewrite
Browse files Browse the repository at this point in the history
rewrite is now master
  • Loading branch information
l3lackShark authored Jul 12, 2020
2 parents 4b27a5e + 14ce129 commit 666d907
Show file tree
Hide file tree
Showing 28 changed files with 5,200 additions and 998 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,14 @@ jobs:
curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
dep ensure
fi
- name: Build
run: go build -v .
run: go build -v -o build/gosumemory

# - name: Upload artifact
# uses: actions/[email protected]
# with:
# # Artifact name
# name: gosumemory
# # Directory containing files to upload
# path: ./build

5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
main
gosumemory
gosumemory.exe
static
osu!.db
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "static"]
path = static
url = https://github.com/l3lackShark/static
18 changes: 18 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [

{
"name": "Launch",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}/main.go",
"env": {},
"args": []
}
]
}
Loading

0 comments on commit 666d907

Please sign in to comment.