Skip to content

Commit

Permalink
chore: add minimal CI, again...
Browse files Browse the repository at this point in the history
  • Loading branch information
douglaz committed Dec 14, 2023
1 parent 89d11f6 commit d8f1a61
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 58 deletions.
27 changes: 0 additions & 27 deletions .github/main.yaml

This file was deleted.

27 changes: 0 additions & 27 deletions .github/main.yml

This file was deleted.

15 changes: 11 additions & 4 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,14 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- name: Show cargo version
run: cargo --version
- name: Fetch
run: |
cargo fetch --locked
- name: Build
run: |
cargo build --release --frozen
- name: Test
run: |
cargo test --release --frozen --workspace

0 comments on commit d8f1a61

Please sign in to comment.