Skip to content

Commit

Permalink
Wip: pipelines
Browse files Browse the repository at this point in the history
  • Loading branch information
containerscrew committed Aug 20, 2024
1 parent bfe2e0d commit a7bdca2
Showing 1 changed file with 26 additions and 23 deletions.
49 changes: 26 additions & 23 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,26 +1,29 @@
#name: Test 🤖
#
#on:
# pull_request:
# push:
#
#env:
# CARGO_TERM_COLOR: always
#
#jobs:
# test:
# name: Test
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
#
# - name: Install latest stable
# uses: actions-rust-lang/setup-rust-toolchain@v1
# with:
# toolchain: stable
# override: true
# components: rustfmt, clippy
#
name: Test 🤖

on:
pull_request:
push:

env:
CARGO_TERM_COLOR: always

jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Install latest stable
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: stable
override: true
components: rustfmt, clippy

- name: Run cargo test
run: cargo test

# - name: Run cargo check
# uses: actions-rs/cargo@v1
# with:
Expand Down

0 comments on commit a7bdca2

Please sign in to comment.