Skip to content

Commit

Permalink
Move asset registry compiler to a tools/compiler subdirectory (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
hdevalence authored Apr 11, 2024
1 parent 05e74b8 commit 0b81755
Show file tree
Hide file tree
Showing 14 changed files with 8 additions and 13 deletions.
16 changes: 3 additions & 13 deletions .github/workflows/rust_checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,6 @@ on:
pull_request:

jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Build Project
run: cargo build --release

check_fmt:
name: Check Formatting
runs-on: ubuntu-latest
Expand All @@ -33,6 +20,7 @@ jobs:
override: true
- name: Check Formatting
run: cargo fmt --check
working-directory: tools/compiler

lint:
name: Lint with Clippy
Expand All @@ -47,6 +35,7 @@ jobs:
override: true
- name: Run Clippy on tests
run: cargo clippy --tests -- -D warnings
working-directory: tools/compiler

test:
name: Run Tests
Expand All @@ -60,3 +49,4 @@ jobs:
override: true
- name: Run Tests
run: cargo test
working-directory: tools/compiler
5 changes: 5 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"rust-analyzer.linkedProjects": [
"tools/compiler/Cargo.toml"
]
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 0b81755

Please sign in to comment.