Create pages.yml

This commit is contained in:
Mani Arasteh 2024-06-01 19:07:57 +03:30 committed by GitHub
parent 154cdff3c8
commit a96a83a4bf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

17
.github/workflows/pages.yml vendored Normal file
View file

@ -0,0 +1,17 @@
name: Go on Pages
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '1.21.x'
- name: Install dependencies
run: go get .
- name: Build
run: go build -v main.go