mirror of
https://github.com/serokell/deploy-rs.git
synced 2024-11-25 10:24:47 +03:00
5617d39d3a
Problem: We want to be able to run CI checks on PRs from external forks. However, this is only possible with 'on: pull_request', while currently CI is triggered 'on: push' Solution: Change CI triggering condition to 'on: pull_request'.
12 lines
184 B
YAML
12 lines
184 B
YAML
name: Nix flake check
|
|
on: pull_request
|
|
|
|
jobs:
|
|
check:
|
|
runs-on: self-hosted
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: check flake
|
|
run: nix flake check -L
|