13 lines
392 B
YAML
13 lines
392 B
YAML
|
# .gitea/workflows/build.yaml
|
||
|
name: Test Actions
|
||
|
run-name: ${{ github.actor }} is building Veilid for linux_amd64
|
||
|
on: [push]
|
||
|
jobs:
|
||
|
Explore-Gitea-Actions:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Install Basic Tools
|
||
|
run: apt-get update; apt-get install -y sed coreutils sudo
|
||
|
- name: Setup Linux Environment
|
||
|
run: yes | /bin/bash -c "$(echo 'hewwo') ; exit 0"
|