zmk-config-corne/.gitea/workflows/test.yml
Marius Alwan Meyer 43da84896d
Some checks reported warnings
Build / Build (push) Has been cancelled
Test / Build (push) Successful in 17m37s
[CI] Try a 3rd party container
2023-07-18 16:29:40 +02:00

31 lines
671 B
YAML

on: [push, pull_request, workflow_dispatch]
name: Test
jobs:
build:
runs-on: ubuntu-latest
container:
image: ghcr.io/bcdevices/zephyr:latest
name: Build
steps:
- name: Install Dependencies
run: |
apt-get update;
apt-get upgrade --yes
apt-get install --yes --no-install-recommends \
nodejs
- name: Checkout
uses: actions/checkout@v3
- name: Create some File
run: echo "lalala" > test.txt
- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
path: test.txt
name: test.txt
if-no-files-found: ignore