Skip to content

Implement IGE

Implement IGE #36

Workflow file for this run

name: Test
on:
workflow_dispatch:
push:
branches: [master]
paths: ['**.dart', '**.yaml', '**.yml']
jobs:
test:
if: github.repository == 'bitanon/cipherlib'
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
sdk: ['2.14.0', 'stable', 'dev']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
# You can specify other versions if desired, see documentation here:
# https://github.com/dart-lang/setup-dart/blob/main/README.md
- uses: dart-lang/[email protected]
with:
sdk: ${{ matrix.sdk }}
- name: Install dependencies
run: dart pub get
- name: Run tests
run: dart test