diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml index edf884b..f0c3d4b 100644 --- a/.gitea/workflows/test.yaml +++ b/.gitea/workflows/test.yaml @@ -19,3 +19,9 @@ jobs: - name: Run script on current tree run: | ./scripts/test.sh + + - uses: https://gitea.com/actions/gitea-upload-artifact@v4 + with: + name: presentation + path: presentation/index.html + diff --git a/go.mod b/go.mod deleted file mode 100644 index 85cfdf7..0000000 --- a/go.mod +++ /dev/null @@ -1,3 +0,0 @@ -module testmodule - -go 1.24.4 diff --git a/main.go b/main.go deleted file mode 100644 index 1e9d501..0000000 --- a/main.go +++ /dev/null @@ -1,7 +0,0 @@ -package main - -import "fmt" - -func main() { - fmt.Println("Some test yayyy") -} diff --git a/presentation/presentation.md b/presentation/presentation.md new file mode 100644 index 0000000..40813b6 --- /dev/null +++ b/presentation/presentation.md @@ -0,0 +1,34 @@ +--- +marp: true +paginate: true +footer: 2026-XX-XX +header: Some presentation title +math: mathjax +--- + +# Presentation main screen + +> Done at some point, very fast yaknow + +--- +# Contents +- First content +- Second content +- Third content + +--- +# A bit of code as well +```go +package main + +import "fmt" + +func main() { + fmt.Println("hello world!!!") +} +``` + +--- +# Done! +- Thanks for your attention! +- Any questions? diff --git a/scripts/test.sh b/scripts/test.sh index ddfd97a..856288c 100644 --- a/scripts/test.sh +++ b/scripts/test.sh @@ -1,7 +1,7 @@ #!/bin/bash set -e -apt update && apt install -y golang-go -go run main.go +apt update && apt install -y node -echo "Done running!" +cd presentation +npx @marp-team/marp-cli@latest presentation.md -o index.html