Skip to content

Aes algorithm

Aes algorithm #8

Workflow file for this run

name: Flutter CI
on:
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out the repository
uses: actions/checkout@v2
- name: Set up Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: '3.19.6'
- name: Cache Flutter dependencies
uses: actions/cache@v3
with:
path: |
~/.pub-cache
flutter/bin/cache
# key: ${{ runner.os }}-pub-cache-${{ hashFiles('pubspec.yaml') }}
key: ${{ runner.os }}-flutter-${{ hashFiles('pubspec.yaml', 'pubspec.lock') }}
restore-keys: |
${{ runner.os }}-flutter-
- name: Install dependencies
run: flutter pub get
- name: Run tests & generate coverage
run: flutter test --coverage
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2
with:
files: ./coverage/lcov.info
flags: flutter
name: code-coverage-report
token: 2f59bcbb-7263-4e0c-9a37-e710e39705bb
fail_ci_if_error: true