diff --git a/.github/workflows/server.yml b/.github/workflows/server.yml new file mode 100644 index 0000000..f17c05a --- /dev/null +++ b/.github/workflows/server.yml @@ -0,0 +1,26 @@ +name: server + +on: + push: + branches: + - master + +jobs: + Build: + + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + + - name: Set up Go + uses: actions/setup-go@v3 + with: + go-version: 1.19 + + - name: Build + working-directory: greataped/app + run: go build -v ./... + + - name: Test + working-directory: greataped/tests + run: go test -v ./... diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index 65bfcb4..0000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "conventionalCommits.scopes": [ - "project" - ] -} \ No newline at end of file