test: add minimal workflow to test GitHub Actions execution
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
name: Simple Test
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ master ]
|
||||
pull_request:
|
||||
branches: [ master ]
|
||||
|
||||
jobs:
|
||||
simple:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Echo test
|
||||
run: echo "Hello from GitHub Actions"
|
||||
Reference in New Issue
Block a user