Skip to content

Commit

Permalink
Initial PR workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
zaycev authored Jan 26, 2024
1 parent 54aacd7 commit d7ac137
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Pull Request
run-name: Pull Request for ${{ github.ref_name }} by ${{ github.actor }}

concurrency:
group: ${{ github.head_ref || github.run_id }}
cancel-in-progress: true

permissions: write-all

on:
pull_request: {}
workflow_dispatch: {}
push:
branches:
- trunk-merge/**

env:
CARGO_TERM_COLOR: always

jobs:
build:
name: Build and Test
runs-on: monorepo-amd64-large

steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose

0 comments on commit d7ac137

Please sign in to comment.