Skip to content

Integrate with now-u-backend (api-v2) #346

Integrate with now-u-backend (api-v2)

Integrate with now-u-backend (api-v2) #346

Workflow file for this run

name: Flutter tests
# Run this workflow every time a new commit pushed to your repository
on: pull_request
jobs:
test:
name: Test on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
env:
CHANGELOG_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
strategy:
matrix:
os: [macos-latest]
# os: [ubuntu-latest, macos-latest]
# os: [ubuntu-latest]
steps:
- uses: actions/checkout@v2
- uses: subosito/flutter-action@v2
with:
channel: 'beta'
- run: dart --version
- run: flutter --version
- run: flutter pub get
- run: pod repo update
- name: Linting
run: flutter format .
- name: Commit linting
uses: EndBug/[email protected]
with:
author_name: github-actions
author_email: 41898282+github-actions[bot]@users.noreply.github.com
- name: Run tests
run: flutter test