Skip to content

Update .gitignore

Update .gitignore #70

Workflow file for this run

on:
push:
branches:
- development
- trunk
jobs:
test:
name: Test on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
java-version: '12.x'
- uses: subosito/flutter-action@v2
with:
flutter-version: '1.20.2'
channel: 'dev'
- run: dart --version
- run: flutter --version