Skip to content

Bump actions/checkout from 3 to 4 (#9) #32

Bump actions/checkout from 3 to 4 (#9)

Bump actions/checkout from 3 to 4 (#9) #32

Workflow file for this run

name: Testing
on:
pull_request:
branches: [master]
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: "Fetching repo"
uses: actions/checkout@v4
- name: "Setting up Flutter SDK"
uses: subosito/flutter-action@v2
- name: "Getting dependencies"
run: flutter pub get
# - name: "Generating code"
# run: flutter pub run build_runner build
- name: "Running tests"
run: flutter test
# - name: "Generating coverage"
# run: flutter test --coverage
# - name: "Uploading coverage"
# uses: codecov/codecov-action@v3
# env:
# CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
# with:
# files: coverage/lcov.info
# verbose: true