diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml new file mode 100644 index 0000000..9900fd4 --- /dev/null +++ b/.github/workflows/ci.yaml @@ -0,0 +1,12 @@ +name: "CI" +on: + push: + branches: + - master + pull_request: +jobs: + build: + runs-on: self-hosted + steps: + - uses: actions/checkout@v4 + - run: nixci diff --git a/Jenkinsfile b/Jenkinsfile deleted file mode 100644 index f7920b3..0000000 --- a/Jenkinsfile +++ /dev/null @@ -1,11 +0,0 @@ -pipeline { - agent any - stages { - stage ('Build') { - steps { - // https://github.com/srid/nixci - nixCI () - } - } - } -}