Skip to content

Commit

Permalink
Migrate GitLab CI to Github
Browse files Browse the repository at this point in the history
  • Loading branch information
GnomedDev committed Sep 1, 2024
1 parent 9717614 commit e033d42
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 99 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
on:
pull_request:
push:

jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
rust-version: ["stable", "beta", "nightly", "1.70"]

steps:
- uses: actions/checkout@v4
- run: rustup toolchain install ${{ matrix.rust-version }}
- run: cargo +${{ matrix.rust-version }} test --all

test-fmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: cargo fmt --check --all
55 changes: 0 additions & 55 deletions .gitlab-ci.yml

This file was deleted.

19 changes: 0 additions & 19 deletions .travis.yml

This file was deleted.

1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# Makes error reporting in procedural macros nice and easy

[![travis ci](https://travis-ci.org/CreepySkeleton/proc-macro-error.svg?branch=master)](https://travis-ci.org/CreepySkeleton/proc-macro-error)
[![docs.rs](https://docs.rs/proc-macro-error/badge.svg)](https://docs.rs/proc-macro-error)
[![unsafe forbidden](https://img.shields.io/badge/unsafe-forbidden-success.svg)](https://github.com/rust-secure-code/safety-dance/)

Expand Down
24 changes: 0 additions & 24 deletions ci/try_to_recover.sh

This file was deleted.

0 comments on commit e033d42

Please sign in to comment.