All checks were successful
rustyfuck from source / run-neofetch (push) Successful in 47s
31 lines
No EOL
630 B
YAML
31 lines
No EOL
630 B
YAML
name: rustyfuck 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/rustyfuck
|
|
|
|
- name: compiling
|
|
run: |
|
|
cd rustyfuck
|
|
cargo build --release
|
|
|
|
- name: run rustyfuck
|
|
run: |
|
|
cd rustyfuck
|
|
./target/release/rustyfuck -V
|
|
echo mandelbrot eee
|
|
./target/release/rustyfuck examples/mandelbrot.bf |