Some checks failed
/ test (push) Failing after 1s
Signed-off-by: Daholli <christoph.hollizeck@hey.com>
14 lines
206 B
YAML
14 lines
206 B
YAML
on: [push]
|
|
jobs:
|
|
test:
|
|
runs-on: native
|
|
steps:
|
|
- run: nix build nixpkgs#hello
|
|
|
|
- uses: actions/upload-artifact@v3
|
|
with:
|
|
name: hello-artifact
|
|
path: result/
|
|
|
|
|