Skip to content

Commit

Permalink
[CI] Add workflow to format, lint and deploy to fly
Browse files Browse the repository at this point in the history
  • Loading branch information
Blonteractor committed Jan 27, 2024
1 parent 508abf3 commit 5cb7214
Showing 1 changed file with 61 additions and 0 deletions.
61 changes: 61 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
on:
push:
tags:
- '**'
branches:
- '**'
workflow_dispatch:

name: CI

jobs:
checks:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Bootstrap
uses: actions-rs/toolchain@v1
with:
toolchain: stable
components: rustfmt, clippy
target: x86_64-unknown-linux-gnu
continue-on-error: true

- name: Update rust
run: |
rustup Update
continue-on-error: true

- name: Add target
run: |
rustup target add x86_64-unknown-linux-gnu
continue-on-error: true
- name: Formatting
run: |
cargo fmt --all -- --check
- name: Lints
run: |
cargo clippy -- --no-deps -D warnings
- name: Tests
run: |
cargo test --release
- name: Build
run: |
cargo build
- name: Bootstrap fly
uses: superfly/flyctl-actions/setup-flyctl@master
if: success() && github.ref == 'refs/heads/main'

- name: Deploy
run: |
flyctl deploy --remote-only
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
if: success() && github.ref == 'refs/heads/main'

0 comments on commit 5cb7214

Please sign in to comment.