Skip to content

タグ画面を作成しました #45

タグ画面を作成しました

タグ画面を作成しました #45

Workflow file for this run

name: Check and analyze the source code
on:
pull_request:
branches:
- main
jobs:
test:
name: Check the source code
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: subosito/[email protected]
with:
flutter-version: '3.16.9'
- name: Install dependencies and analyze project source
run: |
for d in */ ; do
cd $d
flutter pub get
flutter analyze
cd ..
done