workflowtest/.forgejo/workflows/test.yml
Workflow config file is invalid. Please check your config file: yaml: line 15: did not find expected '-' indicator
cat 95afd59d0b
Some checks failed
test.yml / fastfetch from source (push) Failing after 0s
fastfetch from source
2026-02-18 15:09:20 +03:00

29 lines
No EOL
553 B
YAML

name: fastfetch from source
on:
push:
branches:
- main
jobs:
run-neofetch:
runs-on: archlinux-latest
container:
image: archlinux:latest
steps:
- name: prepare source
run: |
pacman -S cmake git base-devel make pkgconf -y
git clone https://github.com/fastfetch-cli/fastfetch
- name: compiling
run: |
mkdir -p build
cd build
cmake ..
cmake --build . --target fastfetch
- name: run fastfetch
run: ./fastfetch