first commit
Some checks failed
Array Queue Test / test (push) Has been cancelled
Exception Test / test (push) Has been cancelled
Generic Test / test (push) Has been cancelled
JavaScript Example Test / test (push) Has been cancelled
JavaScript Expressions Test / test (push) Has been cancelled
JavaScript Objective Expressions Test / test (push) Has been cancelled
Queues Test / test (push) Has been cancelled
Binary Search Test / test (push) Has been cancelled
Some checks failed
Array Queue Test / test (push) Has been cancelled
Exception Test / test (push) Has been cancelled
Generic Test / test (push) Has been cancelled
JavaScript Example Test / test (push) Has been cancelled
JavaScript Expressions Test / test (push) Has been cancelled
JavaScript Objective Expressions Test / test (push) Has been cancelled
Queues Test / test (push) Has been cancelled
Binary Search Test / test (push) Has been cancelled
This commit is contained in:
17
.gitea/workflows/queues.yml
Normal file
17
.gitea/workflows/queues.yml
Normal file
@@ -0,0 +1,17 @@
|
||||
name: Queues Test
|
||||
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 common -name "*.java")
|
||||
- name: Run Queue tests
|
||||
run: |
|
||||
java -ea --add-opens java.base/java.util=ALL-UNNAMED -cp out queue.QueueTest Base 3233 3435 3637 3839
|
||||
Reference in New Issue
Block a user