Merge pull request #11 from arnavrneo/express-backend #27
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Action workflow for go server | |
name: go-apiv1-test | |
on: | |
push: | |
branches: [ "main" ] | |
paths_ignore: | |
- 'url-shortener/frontend/' | |
pull_request: | |
branches: [ "main" ] | |
paths_ignore: | |
- 'url-shortener/frontend/' | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: url-shortener/servers/go/ | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: '1.21.6' | |
- name: Set up dependencies | |
run: go get . | |
- name: Test | |
run: | | |
go test -v ./... | |
env: | |
PORT: ${{ secrets.PORT }} | |
REDIS_URI: ${{ secrets.REDIS_URI }} | |
REDIS_PASS: ${{ secrets.REDIS_PASS }} | |
DATABASE_NAME: ${{ secrets.DATABASE_NAME }} | |
DATABASE_COLLECTION: ${{ secrets.DATABASE_COLLECTION }} | |
SECRET: ${{ secrets.SECRET }} | |
MONGODB_URI: ${{ secrets.MONGODB_URI }} |