Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 11 additions & 3 deletions .github/workflows/bcom.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,23 @@
name: Build Test and deploy
run-name: ${{ github.actor }} is building and testing the emulator! 🚀
run-name: ${{ github.actor }} is building and testing the emulator!
on: [push]
env:
CARGO_TERM_COLOR: always # I like the colors
jobs:
lint:
runs-on: ubuntu-latest
container:
image: ngraf3/rust1.88-llvm19:latest
image: rust:latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
# Linter uses git history
with:
fetch-depth: 0
- name: Cache Rust build
uses: Swatinem/rust-cache@v2
- name: Install Rust components
run: rustup component add clippy rustfmt
- name: Pass linter
run: |
cargo clippy -- -Dwarnings
Expand All @@ -25,12 +29,16 @@ jobs:
needs: [lint]
runs-on: ubuntu-latest
container:
image: ngraf3/rust1.88-llvm19:latest
image: rust:latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Cache Rust build
uses: Swatinem/rust-cache@v2
- name: Install Rust components
run: rustup component add clippy rustfmt
- name: Build source
run: cargo build --all-targets
- name: Test source
Expand Down
56 changes: 0 additions & 56 deletions CONTRIBUTING.md

This file was deleted.

Loading
Loading