Skip to content

Initial Support for mod management #256

Initial Support for mod management

Initial Support for mod management #256

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Flutter SDK
uses: subosito/flutter-action@v2
with:
flutter-version: "3.13.0"
channel: "stable"
cache: true
- name: Install Rust Language
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
components: rustfmt, clippy
- name: Test And Generate Coverage
run: |
cargo install just
just test
- name: Upload Coverage
uses: codecov/codecov-action@v3
with:
files: coverage/lcov.info
fail_ci_if_error: true