solved tests

This commit is contained in:
Álvaro González 2026-05-11 11:52:47 +02:00
parent 35762cd864
commit 4a95965ea7
3 changed files with 6 additions and 7 deletions

View file

@ -1,4 +1,4 @@
name: run-on-push
name: run-test-on-push
on:
push:
branches:
@ -21,6 +21,8 @@ jobs:
run: hostname -I
- name: Run script 6
run: hostname
- name: Run script 7
run: env
- uses: actions/checkout@v4
- name: Run script 1
- name: Run a script of repository
run: ./test.sh

View file

@ -1,6 +1,3 @@
#|/bin/bash
echo Es un test de CI/CD
echo date
uname -a
env
echo "Ejecutando $0 en directorio $(PWD)"
make run-test

View file

@ -8,7 +8,7 @@ void main() {
group('Format', () {
test('1 is 1', () {
var s = formatOutput(1.0);
expect(s, "1");
expect(s, "1.0");
});
});
}