[TAS-218] 写真の撮影時刻の取得と表示の実装 #551
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright 2023 OpenAI All rights reserved. | |
# Use of this source code is governed by a MIT license that can be | |
# found in the LICENSE file. | |
# ワークフローの表示名 | |
name: Flutter CI | |
# ワークフローの起動条件を定義する | |
on: | |
# プルリクエストが作成 or 更新された時 | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
# main ブランチに push された時 | |
push: | |
branches: | |
- main | |
# 複数のジョブを定義する | |
# 各ジョブはそれぞれまったく別々の環境で実行される | |
jobs: | |
# 静的解析ジョブの定義 | |
static_analysis: | |
# ジョブの表示名 | |
name: Static Analysis | |
# ジョブを実行するOS | |
runs-on: ubuntu-latest | |
# タイムアウト時間(分) | |
timeout-minutes: 15 | |
# ジョブの手順 | |
steps: | |
# ソースコードをチェックアウト | |
- name: Checkout | |
uses: actions/checkout@v3 | |
# セットアップ | |
- name: Setup Flutter | |
uses: ./.github/actions/setup_flutter | |
with: | |
GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# 静的解析を実行 | |
- name: Run Flutter Lints | |
run: flutter pub get && flutter analyze | |