chore: dummy test for GitHub actions
This commit is contained in:
2
.github/workflows/dart.yml
vendored
2
.github/workflows/dart.yml
vendored
@@ -36,7 +36,7 @@ jobs:
|
||||
# run: dart analyze
|
||||
|
||||
- name: Run tests
|
||||
run: dart --enable-experiment=native-assets test test/gltf_tests.dart
|
||||
run: dart --enable-experiment=native-assets test test/dummy_tests.dart
|
||||
|
||||
# Upload logs on failure
|
||||
- name: Upload logs
|
||||
|
||||
10
thermion_dart/test/dummy_tests.dart
Normal file
10
thermion_dart/test/dummy_tests.dart
Normal file
@@ -0,0 +1,10 @@
|
||||
// just for investigating crashes on GitHub actions
|
||||
import 'package:test/test.dart';
|
||||
|
||||
void main() async {
|
||||
group("test", () {
|
||||
test("test", () {
|
||||
expect(1, 1);
|
||||
});
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user