Skip to content

gitHub Actionsフローの追記 #4

gitHub Actionsフローの追記

gitHub Actionsフローの追記 #4

Workflow file for this run

name: Flutter
on:
push:
branches: [ "main", "develop" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: subosito/flutter-action@v2.3.0
with:
flutter-version: '3.7.2'
- name: Install packages
run: flutter pub get
- name: Linter
run: flutter analyze
- name: Test
run: flutter test