Skip to content

Commit

Permalink
Merge pull request #188 from nikomatsakis/refactor
Browse files Browse the repository at this point in the history
Refactor the Rust code
  • Loading branch information
nikomatsakis authored Dec 13, 2024
2 parents 950acd2 + b6f11cd commit 49e65a6
Show file tree
Hide file tree
Showing 46 changed files with 974 additions and 881 deletions.
2 changes: 2 additions & 0 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[alias]
rpg = "run -q --bin rust-project-goals-cli --"
2 changes: 1 addition & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Rust
name: Validate markdown

on:
push:
Expand Down
20 changes: 20 additions & 0 deletions .github/workflows/compile.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Compile Rust code

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

env:
CARGO_TERM_COLOR: always

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Build and check
run: cargo check --workspace
Loading

0 comments on commit 49e65a6

Please sign in to comment.