zmk-config-corne/.gitea/workflows/test.yml
Marius Alwan Meyer 600c3d1fed
Some checks reported warnings
Build / Build (push) Has been cancelled
Test / Build (push) Successful in 16s
[CI] Test with the QMK Container
2023-07-18 15:50:06 +02:00

30 lines
650 B
YAML

on: [push, pull_request, workflow_dispatch]
name: Test
jobs:
build:
runs-on: ubuntu-latest
container:
image: ghcr.io/qmk/qmk_base_container:latest
name: Build
steps:
- name: Install Dependencies
run: |
apt-get update;
apt-get install --yes --no-install-recommends \
nodejs \
ca-certificates
- 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
if-no-files-found: ignore