fix: Disable Gitlab trigger #35
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json | |
name: rdf-protect | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
on: | |
push: | |
branches: | |
- main | |
- "feat/*" | |
- "fix/*" | |
pull_request: | |
branches: | |
- main | |
jobs: | |
format: | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/sdsc-ordes/rdf-protect:ci-format-1.0.0 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: 1 - format | |
run: | | |
cat /etc/os-release | |
source .gitlab/scripts/before-script.sh | |
just nix-develop-ci just format | |
# lint: | |
# runs-on: ubuntu-latest | |
# container: | |
# image: ghcr.io/sdsc-ordes/rdf-protect:ci-lint-1.0.0 | |
# steps: | |
# - name: Checkout | |
# uses: actions/checkout@v4 | |
# - name: 2 - lint | |
# run: | | |
# source .gitlab/scripts/before-script.sh && | |
# just nix-develop-ci just lint | |
# | |
# build: | |
# runs-on: ubuntu-latest | |
# container: | |
# image: ghcr.io/sdsc-ordes/rdf-protect:ci-build-1.0.0 | |
# steps: | |
# - name: Checkout | |
# uses: actions/checkout@v4 | |
# - name: 3 - build | |
# run: | | |
# source .gitlab/scripts/before-script.sh && | |
# just nix-develop-ci just build | |
# # - name: 3.1 - tests | |
# # run: | | |
# # source .gitlab/scripts/before-script.sh && | |
# # just nix-develop-ci just test | |
# | |
# test: | |
# runs-on: ubuntu-latest | |
# container: | |
# image: ghcr.io/sdsc-ordes/rdf-protect:ci-test-1.0.0 | |
# steps: | |
# - name: Checkout | |
# uses: actions/checkout@v4 | |
# - name: 4 - test | |
# run: | | |
# source .gitlab/scripts/before-script.sh && | |
# just nix-develop-ci just test | |
# | |
# package: | |
# runs-on: ubuntu-latest | |
# container: | |
# image: ghcr.io/sdsc-ordes/rdf-protect:ci-package-1.0.0 | |
# steps: | |
# - name: Checkout | |
# uses: actions/checkout@v4 | |
# - name: 5 - package (nix) | |
# run: | | |
# source .gitlab/scripts/before-script.sh && | |
# just build-package |