Skip to content

Merge pull request #57 from shion1305/dependabot/go_modules/golang.or… #169

Merge pull request #57 from shion1305/dependabot/go_modules/golang.or…

Merge pull request #57 from shion1305/dependabot/go_modules/golang.or… #169

Workflow file for this run

name: GoTestFirebaseEmulator
on:
push:
branches:
- main
- develop
pull_request:
paths:
- '**.go'
- '.github/**'
jobs:
go-test-with-firebase-emulator:
runs-on: ubuntu-latest
steps:
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: 1.19
- name: Checkout code
uses: actions/checkout@v2
- run: |
echo "ENV_LOCATION=$GITHUB_WORKSPACE/pkg/setting/files/setting.testing.yaml"
echo "ENV_LOCATION=$GITHUB_WORKSPACE/pkg/setting/files/setting.testing.yaml" >> $GITHUB_ENV
- name: Install firebase-emulator
run: npm install -g firebase-tools
- name: Run Firebase Emulator
run: |
firebase setup:emulators:database
firebase emulators:start --only database &
- name: 'Waiting for the emulator to start up'
run: sleep 20
- name: Run tests
env:
FIREBASE_DATABASE_EMULATOR_HOST: localhost:9000
run: go test -p=1 -race -coverprofile=coverage.txt -covermode=atomic ./... #gosetup
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3