Compare commits

...

2 Commits

Author SHA1 Message Date
me
8a5c2a28c6 add Base tests for hw3
Some checks failed
Reverse Tests / test (push) Failing after 5s
Sum Tests / test (push) Successful in 7s
2026-01-30 13:43:25 +05:00
me
c411372ec7 add Base tests for hw3 2026-01-30 13:42:43 +05:00
2 changed files with 24 additions and 1 deletions

View File

@@ -0,0 +1,22 @@
name: Reverse Tests
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Compile Java
run: |
mkdir -p out
javac -d out $(find java -name "*.java")
- name: Run Sum tests
run: |
java -ea -cp out reverse.ReverseTest Base

View File

@@ -399,7 +399,8 @@ include_toc: true
-->
## Домашнее задание 3. Реверс
## Домашнее задание 3. Реверс [![Reverse Tests](https://git.fymio.us/me/prog-intro-2025/actions/workflows/reverse.yml/badge.svg)](https://git.fymio.us/me/prog-intro-2025/actions)
Модификации
* *Base*