Skip to content

Commit

Permalink
ci: add and link self-hosted runner
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgepiloto committed Sep 26, 2023
1 parent d05d330 commit 04db8e4
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/ci_cd.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: CI
on:
pull_request:
push:
tags:
- "*"
branches:
- main

env:
MAIN_PYTHON_VERSION : '3.10'
LIBRARY_NAME: 'ansys-rocky-core'
DOCUMENTATION_CNAME: 'rocky.docs.pyansys.com'

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:

code-style:
name: Code style
runs-on: [self-hosted, Windows, pyrocky]
steps:

- name: "Hello runner"
run: |
python -c "print('Hello runner!')"

0 comments on commit 04db8e4

Please sign in to comment.