Workflow config file is invalid. Please check your config file: yaml: line 10: could not find expected ':'

21 lines
472 B
YAML

name: build_test
on: [push]
jobs:
build:
runs-on: arch
steps:
- name: fix package cache
run: rm -fr /var/cache/pacman/pkg/* &&
pacman -S archlinux-keyring &&
pacman-key --init &&
pacman-key --populate archlinux
- name: get dependencies
run: pacman -Sy nodejs make nasm --needed --noconfirm
- name: Checkout code
uses: actions/checkout@v4
- name: Build
run: make -j$(nproc)