Skip to content

Commit

Permalink
Github Actions config (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
Shella authored Sep 22, 2023
1 parent e4c4add commit b3d0697
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 91 deletions.
8 changes: 8 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
version: 2
updates:
- package-ecosystem: cargo
directory: "/"
schedule:
interval: daily
time: '13:00'
open-pull-requests-limit: 10
30 changes: 30 additions & 0 deletions .github/workflows/observatory.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: observatory

on:
pull_request:
paths:
- ".github/workflows/observatory.yml"
- "Cargo.*"
- "observatory/**"
push:
branches:
- main

env:
CARGO_INCREMENTAL: 0
RUSTFLAGS: "-Dwarnings"

jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
rust:
- 1.72 # MSRV
- stable
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.rust }}
- run: cargo build
91 changes: 0 additions & 91 deletions tests/acceptance.rs

This file was deleted.

0 comments on commit b3d0697

Please sign in to comment.