forked from CringeStudios/element-desktop
12 lines
217 B
YAML
12 lines
217 B
YAML
|
on: [push, workflow_dispatch]
|
||
|
|
||
|
jobs:
|
||
|
build-element:
|
||
|
runs-on: ubuntu:latest
|
||
|
steps:
|
||
|
- name: Checkout
|
||
|
uses: actions/checkout@v3
|
||
|
|
||
|
- name: Run script
|
||
|
run: "echo 'hello world'"
|