Some checks failed
Test code / Test code (push) Has been cancelled
Reviewed-on: remoll/fast-network-navigation#2
32 lines
486 B
YAML
32 lines
486 B
YAML
on:
|
|
push:
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
|
|
|
|
name: Test code
|
|
|
|
jobs:
|
|
test:
|
|
name: Test code
|
|
runs-on: k8s
|
|
steps:
|
|
|
|
- name: Install prerequisites
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get install -y xz-utils
|
|
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: https://github.com/subosito/flutter-action@v2
|
|
with:
|
|
channel: stable
|
|
flutter-version: 3.19.6
|
|
cache: true
|
|
|
|
- run: flutter pub get
|
|
|
|
- run: flutter test
|