All checks were successful
somefetch from source / run-neofetch (push) Successful in 31s
29 lines
No EOL
537 B
YAML
29 lines
No EOL
537 B
YAML
name: somefetch from source
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
run-neofetch:
|
|
runs-on: archlinux-latest
|
|
container:
|
|
image: archlinux:latest
|
|
|
|
steps:
|
|
|
|
- name: prepare source
|
|
run: |
|
|
pacman -Sy git rust --noconfirm
|
|
git clone https://github.com/OctoBanon-Main/somefetch
|
|
|
|
- name: compiling
|
|
run: |
|
|
cd somefetch
|
|
cargo build --release
|
|
|
|
- name: run rustyfuck
|
|
run: |
|
|
cd somefetch
|
|
./target/release/somefetch |