16 lines
394 B
YAML
16 lines
394 B
YAML
name: Example CI Workflow
|
|
|
|
name: Gitea Actions Demo
|
|
on: [push]
|
|
|
|
# Defines the jobs the workflow will run. Jobs are run in parallel by default.
|
|
jobs:
|
|
build:
|
|
# The type of runner that the job will run on.
|
|
runs-on: nix
|
|
steps:
|
|
- name: Build with nix
|
|
run: |
|
|
# Replace the above command with the command to build your project.
|
|
nix build -L .#abstract-machine
|
|
|