diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..e9b6186 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,13 @@ +on: push + + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-go@v3 + - run: go build . + - uses: actions/upload-artifact@v3 + with: + path: ./neowofetch \ No newline at end of file