Skip to content

Commit

Permalink
Merge pull request #280 from dev-sec/actions
Browse files Browse the repository at this point in the history
CI: setup cinc WS in the GH actions
  • Loading branch information
artem-sidorenko authored Mar 29, 2023
2 parents 2a17eba + 725e3cb commit ce8d225
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
---
name: "Tests"
on:
push:
branches:
- '*'

jobs:
linting:
runs-on: ubuntu-latest
strategy:
matrix:
cinc_workstation_version: [ '22', '23' ]
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v3
with:
path: |
.cache
key: ${{ runner.os }}-${{ matrix.cinc_workstation_version }}
restore-keys: |
${{ runner.os }}-${{ matrix.cinc_workstation_version }}
- name: setup environment
run: |
mkdir -p .cache
curl -L https://omnitruck.cinc.sh/install.sh | sudo bash -s -- -P cinc-workstation -d .cache -v ${{ matrix.cinc_workstation_version }}

0 comments on commit ce8d225

Please sign in to comment.