Skip to content

Commit

Permalink
build matrix
Browse files Browse the repository at this point in the history
and typos
  • Loading branch information
gumpt committed Feb 29, 2024
1 parent cabd7e6 commit 5d1bbd3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 30 deletions.
27 changes: 0 additions & 27 deletions .github/workflows/audit.yml

This file was deleted.

11 changes: 8 additions & 3 deletions .github/workflows/stable.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
on: [push, pull_request]

name: Stable
name: build

jobs:
pingora:
strategy:
matrix:
toolchain: [nightly, stable]
profile: [minimal, default]
runs-on: ubuntu-latest
# Only run on "pull_request" event for external PRs. This is to avoid
# duplicate builds for PRs created from internal branches.
Expand All @@ -22,8 +26,9 @@ jobs:
- name: Install toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
components: rustfmt, clippy,
toolchain: ${{ matrix.toolchain }}
profile: ${{ matrix.profile }}
components: rustfmt, clippy
override: true
default: true

Expand Down

0 comments on commit 5d1bbd3

Please sign in to comment.