Skip to content

Feat/community closed message #390

Feat/community closed message

Feat/community closed message #390

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Test Code
on:
pull_request:
types: [opened, synchronize]
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
run-tests:
runs-on: ubuntu-latest
env:
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Copy env file
run: echo "${{ secrets.SU_MAIN_ENV }}" >> .env
- run: echo "${{ secrets.WEB_MAIN_ENV }}" >> .web.env
- uses: subosito/flutter-action@v2
with:
channel: "stable"
- run: flutter pub get
- run: flutter test