Skip to content

Commit

Permalink
workflow: go build
Browse files Browse the repository at this point in the history
  • Loading branch information
AshokShau committed Sep 22, 2024
1 parent af0bf0b commit fcd2768
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @AshokShau
2 changes: 1 addition & 1 deletion README.md → .github/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ Contributions are welcome! Here's how you can help:

Please ensure your code follows the project's coding standards and includes appropriate tests.
</details>
## License
This project is licensed under the MIT License—see the [LICENSE](/LICENSE) file for details.
Expand Down
18 changes: 18 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: build

on: [push, pull_request]

jobs:

build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.23.0'

- name: Build
run: go build -v ./...

0 comments on commit fcd2768

Please sign in to comment.