Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Migrate to GitHub Actions and CircleCI#62

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
thomasrockhu-codecov merged 8 commits intomasterfromchore-migrate-to-gha
Aug 31, 2021
Merged
Show file tree
Hide file tree
Changes fromall commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions.circleci/config.yml
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
version: 2.1
orbs:
codecov: codecov/codecov@3.0.0

jobs:
build:
docker:
- image: cimg/python:3.9.6
steps:
- checkout
- run:
name: Install dependencies
command: pip install -r requirements.txt
- run:
name: Run tests and collect coverage
command: |
coverage run tests.py
coverage xml
- codecov/upload

workflow:
version: 2.1
build-test:
jobs:
- build
20 changes: 20 additions & 0 deletions.github/workflows/ci.yml
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
name: Workflow for Codecov example-python
on: [push, pull_request]
jobs:
run:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install dependencies
run: pip install -r requirements.txt
- name: Run tests and collect coverage
run: |
coverage run tests.py
coverage xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2
20 changes: 0 additions & 20 deletions.travis.yml
View file
Open in desktop

This file was deleted.

34 changes: 0 additions & 34 deletionsazure-pipelines.yml
View file
Open in desktop

This file was deleted.

1 change: 1 addition & 0 deletionsrequirements.txt
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
coverage

[8]ページ先頭

©2009-2025 Movatter.jp