Skip to content

Commit

Permalink
dispatch test
Browse files Browse the repository at this point in the history
  • Loading branch information
VladasZ committed Aug 31, 2023
1 parent c35fcdb commit 2eebb93
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/dispatch.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Dispatch

on:
workflow_dispatch:

env:
CARGO_TERM_COLOR: always
GITHUB_ACTIONS: true

jobs:

dispatch:
strategy:
fail-fast: true
matrix:
target: [
{ runner: ubuntu-latest, os: linux },
]
runs-on: ${{ matrix.target.runner }}
steps:
- uses: actions/checkout@v3

- name: Build in docker
run: ./build-in-docker.sh

0 comments on commit 2eebb93

Please sign in to comment.