Skip to content

chore: update dependencies #1209

chore: update dependencies

chore: update dependencies #1209

Workflow file for this run

name: Dart Conformance CI
on:
push:
branches:
- main
pull_request:
schedule:
- cron: "0 0 * * 0"
defaults:
run:
shell: bash
env:
PUB_ENVIRONMENT: bot.github
jobs:
conformance:
runs-on: ubuntu-latest
steps:
- name: Cache Pub hosted dependencies
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9
with:
path: "~/.pub-cache/hosted"
key: "os:ubuntu-latest;pub-cache-hosted;dart:2.10.0;"
restore-keys: |
os:ubuntu-latest;pub-cache-hosted
os:ubuntu-latest
- name: Setup Go
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7
with:
go-version: '^1.16'
- uses: dart-lang/setup-dart@f0ead981b4d9a35b37f30d36160575d60931ec30
with:
sdk: stable
- run: dart --version
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29
- run: dart pub upgrade
working-directory: integration_test
- name: Run HTTP conformance tests
uses: GoogleCloudPlatform/functions-framework-conformance/action@v1.8.6
with:
functionType: 'http'
useBuildpacks: false
# Coordinate changes here with the documentation in `CONTRIBUTING.MD`
cmd: '"dart integration_test/bin/server.dart --target conformanceHttp"'
startDelay: 3
- name: Run CloudEvent conformance tests
uses: GoogleCloudPlatform/functions-framework-conformance/action@v1.8.6
with:
functionType: 'cloudevent'
useBuildpacks: false
# Coordinate changes here with the documentation in `CONTRIBUTING.MD`
cmd: '"dart integration_test/bin/server.dart --target conformanceCloudEvent --signature-type cloudevent"'
validateMapping: false
startDelay: 3