Skip to content

Commit

Permalink
Add new workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicoretti committed Feb 3, 2024
1 parent 78c5988 commit f63da44
Show file tree
Hide file tree
Showing 3 changed files with 48 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: Continues Delivery

name: PR-Merge

on:
push:
tags:
- "**"

env:
CARGO_TERM_COLOR: always
26 changes: 26 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Continues Integration

on:
pull_request:
types: [opened, synchronize, reopened]
branches-ignore:
- master
- main
- gh-pages

env:
CARGO_TERM_COLOR: always


jobs:
build-and-test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Setup Development Environment
uses: ./.github/actions/ka3005p-dev

- name: Run all tests
run: just test
11 changes: 11 additions & 0 deletions .github/workflows/pr-merge.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: PR-Merge

on:
push:
branches:
- "master"
- "main"

env:
CARGO_TERM_COLOR: always

0 comments on commit f63da44

Please sign in to comment.