name: CI on: push: branches-ignore: [main] pull_request: jobs: test: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: go-version-file: backend/go.mod cache-dependency-path: backend/go.sum - name: Go tests working-directory: backend run: go test ./... - uses: subosito/flutter-action@v2 with: cache: true - name: Flutter tests working-directory: client run: flutter test