Skip to content

Rename job in GitHub Actions workflow to clarify purpose of enforcing… #5

Rename job in GitHub Actions workflow to clarify purpose of enforcing…

Rename job in GitHub Actions workflow to clarify purpose of enforcing… #5

Workflow file for this run

name: Test
on:
pull_request:
branches: ["develop"]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
channel: stable
cache: true
- name: Install dependencies
run: flutter pub get
- name: Run tests
run: flutter test