Skip to content

ci: use github actions #10

ci: use github actions

ci: use github actions #10

Workflow file for this run

name: Build Symmecrypt
on: [push]
jobs:
Build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: 'stable'
- run: make test
- run: >
for GOOS in darwin linux windows; do
for GOARCH in amd64 arm64; do
make build GOOS=${GOOS} GOARCH=${GOARCH}
done
done
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: v1.59