Skip to content
This repository has been archived by the owner on Jul 22, 2024. It is now read-only.

Commit

Permalink
Merge pull request #3 from nanu-c/add-workflow
Browse files Browse the repository at this point in the history
Add workflow
  • Loading branch information
nanu-c authored Dec 19, 2021
2 parents f7ca1ce + e5c77d8 commit 7bbaf16
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/workflows.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Axolotl pipeline

on:
push:
branches:
- main
tags:
- v
pull_request:

jobs:

build-crayfish:
name: Build crayfish
runs-on: ubuntu-latest

steps:
- name: Setup rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable

- name: Check out code
uses: actions/checkout@v2
with:
submodules: 'true'

- name: Build
uses: actions-rs/cargo@v1
with:
command: build
args: --manifest-path Cargo.toml --release

- name: Upload build artifacts
uses: actions/upload-artifact@v2
with:
name: crayfish
path: target/release/crayfish
retention-days: 1

0 comments on commit 7bbaf16

Please sign in to comment.