mirror of https://github.com/CympleTech/ESSE.git
3 changed files with 38 additions and 1 deletions
@ -0,0 +1,13 @@ |
|||||||
|
version: 2 |
||||||
|
enable-beta-ecosystems: true |
||||||
|
updates: |
||||||
|
- package-ecosystem: "cargo" # See documentation for possible values |
||||||
|
directory: "/" # Location of package manifests |
||||||
|
target-branch: "main" |
||||||
|
schedule: |
||||||
|
interval: "daily" |
||||||
|
- package-ecosystem: "pub" # See documentation for possible values |
||||||
|
directory: "/" # Location of package manifests |
||||||
|
target-branch: "main" |
||||||
|
schedule: |
||||||
|
interval: "daily" |
@ -0,0 +1,24 @@ |
|||||||
|
name: Main |
||||||
|
|
||||||
|
on: |
||||||
|
pull_request: |
||||||
|
branches: |
||||||
|
- main |
||||||
|
workflow_dispatch: |
||||||
|
|
||||||
|
env: |
||||||
|
CARGO_TERM_COLOR: always |
||||||
|
|
||||||
|
jobs: |
||||||
|
build: |
||||||
|
runs-on: ubuntu-latest |
||||||
|
|
||||||
|
steps: |
||||||
|
- uses: actions/checkout@v2 |
||||||
|
|
||||||
|
- name: Setup | Rust |
||||||
|
uses: ATiltedTree/setup-rust@v1 |
||||||
|
with: |
||||||
|
rust-version: stable |
||||||
|
|
||||||
|
- run: cargo test |
Loading…
Reference in new issue