diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 0000000..3efc216 --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1 @@ +* @AshokShau diff --git a/README.md b/.github/README.md similarity index 99% rename from README.md rename to .github/README.md index a2e39d7..bcc7eef 100644 --- a/README.md +++ b/.github/README.md @@ -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. - + ## License This project is licensed under the MIT License—see the [LICENSE](/LICENSE) file for details. diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..7adb774 --- /dev/null +++ b/.github/workflows/build.yml @@ -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 ./...