Skip to content

Commit

Permalink
try out actions
Browse files Browse the repository at this point in the history
  • Loading branch information
blacktop committed Sep 7, 2019
1 parent 6d6c487 commit a49f089
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/go.yml
@@ -0,0 +1,24 @@
name: Go
on: [push]
jobs:

build:
name: Build
runs-on: ubuntu-latest
steps:

- name: Set up Go 1.13
uses: actions/setup-go@v1
with:
go-version: 1.13
id: go

- name: Check out code into the Go module directory
uses: actions/checkout@v1

- name: Get dependencies
run: |
go mod download
- name: Build
run: go build -v cmd/ipsw/
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -25,3 +25,4 @@ public
System
usr
*.bndb
.vscode/settings.json

0 comments on commit a49f089

Please sign in to comment.