Skip to content
Merged
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
16 changes: 10 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
name: Run CI
name: CI
on:
push:
branches: ["auto"]
branches: ["master"]
pull_request:
branches: ["**"]
merge_group:
types: [checks_requested]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
Expand All @@ -14,7 +16,7 @@ env:

jobs:
ci:
name: Run CI
name: Build and Test
runs-on: ubuntu-latest

strategy:
Expand All @@ -35,8 +37,10 @@ jobs:
run: |
cargo build --no-default-features
cargo build
- name: Tests
run: cargo test --all
- uses: actions-rs/cargo@v1
with:
command: test
args: --all
- name: Build codegen
run: |
cd string-cache-codegen && cargo build && cd ..
Expand All @@ -47,7 +51,7 @@ jobs:


build_result:
name: homu build finished
name: Result
runs-on: ubuntu-latest
needs:
- "ci"
Expand Down