15 lines
226 B
YAML
15 lines
226 B
YAML
on: [push]
|
|
jobs:
|
|
test:
|
|
runs-on: native
|
|
steps:
|
|
- run: nix build nixpkgs#hello
|
|
- run: ls -la
|
|
|
|
- uses: actions/upload-artifact@v3
|
|
with:
|
|
name: hello-artifact
|
|
path: result/
|
|
|
|
|