Skip to content

Move from drone to Github Actions for 1.6 #11

Move from drone to Github Actions for 1.6

Move from drone to Github Actions for 1.6 #11

Workflow file for this run

name: Test CNI
on:
pull_request:
branches:
- '**'
jobs:
integration-cni-tests:
permissions:
contents: read
runs-on: ubuntu-latest
timeout-minutes: 30
container:
image: rancher/dapper:v0.6.0
options: --privileged
strategy:
matrix:
cni: [flannel, calico, weave]
steps:
- name: Force Install GIT latest
run: |
apk add git --update-cache
git --version
- name: Checkout code
uses: actions/checkout@v4
- name: Run build
run: |
dapper build
- name: Run ${{ matrix.cni }} check
run: |
dapper integration ${{ matrix.cni }}