Skip to content

feat: add ability to add pictures #19

feat: add ability to add pictures

feat: add ability to add pictures #19

Workflow file for this run

name: CI
on:
push: {}
jobs:
github-pages:
name: tests
runs-on: ubuntu-22.04
steps:
- name: Check out source repository
uses: actions/checkout@v2
# - uses: darklab8/fl-configs/.github/actions/checkout-freelancer@master
# with:
# freelancer-mod: "discovery"
# freelancer-folder: ${{ github.workspace }}/fl-data
# ssh-key-base64-discovery: ${{ secrets.ID_RSA_FILES_FREELANCER_DISCOVERY }}
# - run: ls ./fl-data
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '^1.22.5'
- name: Install Task
run: |
sh -c "$(curl --location https://taskfile.dev/install.sh)" -- -d -b /usr/local/bin
- name: Install templ
run: go install github.com/a-h/templ/cmd/[email protected]
- name: Build templ file to go
run: templ generate
# no point to do that
# - name: Patch to latest
# run: go run ${{ github.workspace }}/main.go patch
# working-directory: ${{ github.workspace }}/fl-data
- name: Test things
run: task test -- -v
env:
DARKCORE_LOG_LEVEL: "DEBUG"