Compare commits

..
14 Commits
Author SHA1 Message Date
angel fb2f4255f4 prototyped svg reports
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 4s
Tests / Go tests (push) Failing after 15s
2026-08-20 00:23:54 -06:00
angel 55a3694d89 amazon events published as server side event 2026-08-20 00:23:54 -06:00
angel 40afd176e7 mock amazon event processing stubbed 2026-08-20 00:23:54 -06:00
angel 9f86b8e95c bad logs
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 4s
Tests / Go tests (push) Successful in 20s
2026-08-20 00:23:41 -06:00
angel fa3db63ad2 protoype: list raw events on mock mode reports page 2026-08-20 00:23:41 -06:00
angel 0e0422545b mock events saved to db 2026-08-20 00:23:41 -06:00
angel e4e2bd992b mock events db schema 2026-08-20 00:23:41 -06:00
angel 20bbbe33ca regenerated diagrams 2026-08-20 00:23:41 -06:00
angel 496310c93a fixed mock mode button; shortened simulation tabs 2026-08-20 00:23:41 -06:00
angel 25615fabc6 MockMode: made global in templates; increase bort of navbar in mock mode 2026-08-20 00:23:41 -06:00
angel f30d4a3140 stubbed simulations page content: set inventory 2026-08-20 00:23:41 -06:00
angel 793ca05fd4 stubbed simulations page content: refund 2026-08-20 00:23:41 -06:00
angel 9971ff3266 stubbed simulations page content: sale 2026-08-20 00:23:41 -06:00
angel 46a5d0ee55 initial gitea test workflow
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 4s
Tests / Go tests (push) Successful in 17s
2026-08-20 00:23:17 -06:00
+28
View File
@@ -0,0 +1,28 @@
name: Tests
run-name: tests on ${{ gitea.ref }}
on: [push]
jobs:
Go tests:
runs-on: ubuntu-latest
steps:
- name: Description
run: |
echo "🧑‍🔬 $ {{ gitea.actor }} pushed branch ${{ gitea.ref }} ...00101010 ... beginning tests"
- name: Check out repository code
uses: actions/checkout@v4
- name: Update
run: |
echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner."
echo "🖥️ The job is now ready to test your go code on the runner."
- name: Setup golang environment
uses: actions/setup-go@v7
with:
go-version: 'stable'
check-latest: true
token: ${{ gitea.token }}
permissions:
contents: read
- name: Run go tests
run: |
go test ./...