29 lines
No EOL
564 B
YAML
29 lines
No EOL
564 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 -Sy cmake git base-devel make pkgconf --noconfirm
|
|
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 |