This repository has been archived by the owner on Dec 11, 2024. It is now read-only.
Rename yml file #5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: check | |
on: [push, pull_request] | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install NASM | |
uses: ilammy/setup-nasm@v1 | |
- name: Install x86_64-unknown-none target | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
target: x86_64-unknown-none | |
- name: Cargo check | |
run: | |
cd charlotte_core && cargo check --target x86_64-unknown-none |