Skip to content

Commit

Permalink
Add CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Eijebong committed Feb 5, 2024
1 parent 4c79e9f commit f84fbc1
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
on: [push]

name: CI

jobs:
build_and_test:
name: Rust project
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- uses: actions-rs/cargo@v1
with:
command: build
args: --release
- name: 'Upload Artifact'
uses: actions/upload-artifact@v4
with:
name: ap-lobby
path: target/release/ap-lobby
retention-days: 90

0 comments on commit f84fbc1

Please sign in to comment.