1
1
mirror of https://github.com/ssut/payload-dumper-go.git synced 2024-11-18 01:27:39 +00:00
payload-dumper-go/.github/workflows/build.yml
luk1337 b34630c075
chore(ci): add GitHub Actions (#12)
* Add basic Windows/Linux 386/x86_64 GitHub Actions

* Add build-linux-arm64 target

* Add build-linux-armv7 target

* Add build-darwin-amd64 target

* Add basic on push/pr build github action
2021-04-28 09:16:21 +09:00

19 lines
305 B
YAML

name: build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Install dependencies
run: |
sudo apt -y update
sudo apt -y install git golang liblzma-dev
- uses: actions/checkout@v2
- name: Build
run: go build .