Skip to content

Bump http from 1.2.1 to 1.2.2 #1772

Bump http from 1.2.1 to 1.2.2

Bump http from 1.2.1 to 1.2.2 #1772

Workflow file for this run

name: Continous Integration
on:
push:
paths:
- '**.dart'
- 'pubspec.yaml'
pull_request:
branches: [ master, ]
paths:
- '**.dart'
- 'pubspec.yaml'
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Flutter
uses: subosito/flutter-action@v2
with:
channel: 'stable'
flutter-version: '3.24.x'
- run: dart --version
- run: flutter --version
- name: Install app dependencies
run: flutter pub get
- name: Test app
run: flutter test --coverage
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}