Skip to content

Commit

Permalink
Add CI config
Browse files Browse the repository at this point in the history
  • Loading branch information
mullr committed May 24, 2024
1 parent c4db43f commit 6463efc
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: CI

on: [push]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Auth to GHCR
env:
AUXON_GHCR_TOKEN_RO: ${{ secrets.AUXON_GHCR_TOKEN_RO }}
run: |
echo $AUXON_GHCR_TOKEN_RO | docker login ghcr.io -u ${{ github.actor }} --password-stdin
- name: Check and lint
run: |
cargo check
cargo clippy
- name: Integration test
env:
MODALITY_LICENSE_KEY: ${{ secrets.MODALITY_LICENSE_KEY }}
run: |
cd integration-test
./go.sh

0 comments on commit 6463efc

Please sign in to comment.